-
-
Save timramseyjr/6a3cd376e75511e8f94a52ab00a5f147 to your computer and use it in GitHub Desktop.
100% cross browser favicon declaration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
favicons (see http://www.jonathantneal.com/blog/understand-the-favicon) | |
--- | |
icon format dimensions documentation | |
---- ------ ---------- ------------- | |
apple-touch-icon PNG 152x152 https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/MobileHIG/IconMatrix.html#//apple_ref/doc/uid/TP40006556-CH27-SW1 | |
icon PNG 96x96 | |
shortcut icon ICO 32x32 | |
msapplication-TileImage PNG 144x144 | |
--> | |
<link rel="apple-touch-icon-precomposed" href="apple-touch-icon-152x152-precomposed.png"> | |
<link rel="icon" href="favicon.png"> | |
<!--[if IE]><link rel="shortcut icon" href="favicon.ico"><![endif]--> | |
<meta name="msapplication-TileColor" content="#eee"> | |
<meta name="msapplication-TileImage" content="tileicon.png"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment