How do I get my page title to have an icon?
I would like to have my site’s logo shown in the icon area of the title rather than the default white document. Exactly as Stack Overflow has it.
Solution 1:
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
add this to your HTML Head. Of course the file "favicon.ico" has to exist. I think 16x16 or 32x32 pixel files are best.
Solution 2:
this is an interesting question so let check it if you have a image for use as a website-icon then
Add this to your script
<link rel="icon" type="image/gif" href="animated_favicon1.gif" />
otherwise if you have a icon for your website icon then you chose
<link rel="shortcut icon" href="favicon.ico" />
I always use http://www.iconspedia.com/ for more icons
if my answer solved your problem then give me vote ok