How To Fix Your Blog's Favicon.

moonchild

VIP Contributor
A favicon is an icon you use on your website which is mostly a logo that people use in their website.

When you open a tab in a browser the image you see at the title tab, that is favicon.

It helps your website with visibility and it helps you to standout because if someone visits your site, when the visitor opens his history tab, he'll be able to see the logo of your business.

To fix the favicon of your website is very easy, first of all you have to go to the index.html page which is suppose to be the homepage of your website, after opening the code base, you should locate the head tag which is immediately after the HTML tag, inside the head, create a link tag which is represented with this kind of link

<link href="favicon.ico" />

Copy the above code and paste it in your head tag and then in the href which contains the favicon.ico, you just have to rename the image you want to use to favicon and then change the extension to .ico

After that, refresh your browser and you will see your new favicon on the tab.

Always make sure you have specify the path of the image
 
Top