In a HTML5 document, which favicon format do you recommend and why? I want it to be supported by IE7 and all the modern browsers.

Also, when using .png, do I need to specify the type (type="image/png")?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

For compatibility with all browsers stick with .ico.

.png is getting more and more support though as it is easier to create using multiple programs.

for .ico

<link rel="shortcut icon" href="http://example.com/myicon.ico" />

for .png, you need to specify the type

<link rel="icon" type="image/png" href="http://example.com/image.png" />
link|improve this answer
Is it alright to include both and let the browser decide which to use? – ewall May 27 '11 at 18:58
Thank you. But in HTML5 you don't need to self-close the tag, right? – Richard May 28 '11 at 9:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.