Adding icon to title bar

2019-07-09 02:32发布

问题:

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>

回答1:

First, close the php tag, as Swati mentioned.
Second, add / after the php code, so the link tag should be like this:
<link rel="shortcut icon" href="<?php echo base_url(); ?>/images/melon.ico" />

Hope it helps you.



回答2:

<?php echo base_url(); > here you didn't close php tag ,just change it to <?php echo base_url(); ?> ,it should work!