Last active
May 5, 2016 19:41
-
-
Save optimix-designer/4680544 to your computer and use it in GitHub Desktop.
HTML5: Cross-browser favicon
This file contains hidden or 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
<!-- source: http://www.jonathantneal.com/blog/understand-the-favicon/ --> | |
<link rel="apple-touch-icon" href="path/to/touchicon.png"> | |
<link rel="icon" href="path/to/favicon.png"> | |
<!--[if IE]><link rel="shortcut icon" href="path/to/favicon.ico"><![endif]--> | |
<!-- or, set /favicon.ico for IE10 win --> | |
<meta name="msapplication-TileColor" content="#D83434"> | |
<meta name="msapplication-TileImage" content="path/to/tileicon.png"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment