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
xxxxxxxxxx
1
<link rel="icon" type="image/x-icon" href="favicon.ico" />
or:
xxxxxxxxxx
1
<link rel="icon" type="image/vnd.microsoft.icon" href="favicon.ico" />
References
0 commentsShow commentsAdd comment