EN
HTML - correct MIME Type for .ico file?
1
answers
0
points
What is correct MIME Type for favicon.ico
file?
1 answer
0
points
Both image/x-icon
and image/vnd.microsoft.icon
will work in all web browsers.
Practical example
<link rel="icon" type="image/x-icon" href="favicon.ico" />
or:
<link rel="icon" type="image/vnd.microsoft.icon" href="favicon.ico" />
References
0 comments
Add comment