首页 > 解决方案 > Adding icon to title bar

问题描述

I am trying to put an icon in my website title tag. But its not loading in chrome but is loading in mozilla. i don't know what i am doing wrong?

The link for the image is working correctly.

<head>
   <title>Flats in Kochi </title>
   <link rel="shortcut icon" href="<?php echo base_url();?> images/melon.ico" type = "image/x-icon"/>
</head>

标签: phpcsshtmlcodeigniter

解决方案


首先,关闭 php 标签,正如 Swati 所提到的。
二、/在php代码后面加上,所以link标签应该是这样的:
<link rel="shortcut icon" href="<?php echo base_url(); ?>/images/melon.ico" />

希望它可以帮助你。


推荐阅读