Skip to content

Instantly share code, notes, and snippets.

@gbalbuena
Forked from whatnickcodes/favicons.html
Last active December 20, 2015 15:49
Show Gist options
  • Save gbalbuena/6156606 to your computer and use it in GitHub Desktop.
Save gbalbuena/6156606 to your computer and use it in GitHub Desktop.
HTML: many favicons declaration example, can i select as needed or put them all
<!DOCTYPE html>
<html>
<head>
<title>Untiled</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="icon" href="http://scotch.io/images/icons/favicon-32.png" type="image/png"><!-- default favicon -->
<link rel="shortcut icon" href="http://scotch.io/favicon.ico"><!-- legacy default favicon (in root, 32x32) -->
<link rel="apple-touch-icon" sizes="57x57" href="http://scotch.io/images/icons/favicon-57.png"><!-- iPhone low-res and Android -->
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="http://scotch.io/images/icons/favicon-57.png"><!-- legacy Android -->
<link rel="apple-touch-icon" sizes="72x72" href="http://scotch.io/images/icons/favicon-72.png"><!-- iPad -->
<link rel="apple-touch-icon" sizes="114x114" href="http://scotch.io/images/icons/favicon-114.png"><!-- iPhone 4 -->
<link rel="apple-touch-icon" sizes="144x144" href="http://scotch.io/images/icons/favicon-144.png"><!-- iPad hi-res -->
<meta name="application-name" content="Scotch Web Development"><!-- Windows 8 Tile Name -->
<meta name="msapplication-TileImage" content="http://scotch.io/images/icons/favicon-144.png"><!-- Windows 8 Tile Image -->
<meta name="msapplication-TileColor" content="#4eb4e5"><!-- Windows 8 Tile Color -->
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment