Skip to content

Instantly share code, notes, and snippets.

@CMCDragonkai
Created August 17, 2013 10:17
Show Gist options
  • Save CMCDragonkai/6256236 to your computer and use it in GitHub Desktop.
Save CMCDragonkai/6256236 to your computer and use it in GitHub Desktop.
HTML: Apple Touch Icons & Favicon Meta Tags Example. Expected images are to be stored in an "img" folder. Except the favicon, leave it at the root.
<html>
<head>
<link rel="shortcut icon" href="favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="img/apple-touch-icon-144x144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="img/apple-touch-icon-120x120-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="img/apple-touch-icon-114x114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="img/apple-touch-icon-72x72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="img/apple-touch-icon-57x57-precomposed.png">
</head>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment