CodeClerks

How do you install a favicon?



Write the reason you're deleting this FAQ

How do you install a favicon?

How do you install a favicon on a site or forum? What is the code to use and where is it installed in the HTML code?

Comments

Please login or sign up to leave a comment

Join
crazygeek
Add Code Below Above your </head> Tag

[HTML]<link rel="icon"
type="image/png"
href="http://example.com/myicon.png">[/HTML]



Are you sure you want to delete this post?

anirban09P
To create a favicon.ico simply create a 16x16 .PNG file and convert it to an icon resource with png2ico. If you want, you can add more images to the same icon resource to provide alternative resolutions. Most browsers only use a 16x16 image but in a different context (e.g. when you drag a URL from the address bar onto your desktop) a larger icon may be shown. If the icon resource only contains a 16x16 image, this will be scaled to the appropriate size, so technically there is never a need to add alternative resolutions. However, doing so can increase the quality of the displayed icon.



Are you sure you want to delete this post?

topclassseo
just use the html code in the head section of your home page and you will get favicon in no seconds.



Are you sure you want to delete this post?

Omar77
<link rel="shortcut icon" type="image/x-icon" href="file-directory-path/favicon.png" />



Are you sure you want to delete this post?