<link rel=" shortcut icon" href="./img/favicon-96.png"/>
I wanted it to display on chrome but its not working i even cleared cache and restarted my pc even after this its not working!!
<link rel=" shortcut icon" href="./img/favicon-96.png"/>
I wanted it to display on chrome but its not working i even cleared cache and restarted my pc even after this its not working!!
2
Answers
Try the below instead:
Your file path had a period in the front when it didn’t need one.
In the section of your HTML code (typically in your site’s main HTML file, like index.html or header.php), add the following line inside the tags, specifying the correct path to your favicon file:
Replace "/path/to/favicon.ico" with the actual file path to your favicon on your server. If you placed the favicon in your website’s root directory, you can use "/favicon.ico".
For a PNG or other image formats, you can use the following line:
Hope this will help you.