Last active
December 23, 2015 05:49
-
-
Save gabrielnahmias/6590166 to your computer and use it in GitHub Desktop.
iOS Web Application Meta Tag Template (Icons, Splash Screens)
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
<meta name="viewport" content="width=device-width, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"> | |
<meta name="apple-mobile-web-app-capable" content="yes" /> | |
<meta name="apple-mobile-web-app-status-bar-style" content="black" /> | |
<!-- Uncomment the following line to turn off telephone number formatting (click to call) --> | |
<!--<meta name="format-detection" content="telephone=no" />--> | |
<!-- iPhone Icon --> | |
<link href="apple-touch-icon-57x57.png" sizes="57x57" rel="apple-touch-icon"> | |
<!-- iPhone (Retina) Icon --> | |
<link href="apple-touch-icon-114x114.png" sizes="114x114" rel="apple-touch-icon"> | |
<!-- iPad Icon --> | |
<link href="apple-touch-icon-72x72.png" sizes="72x72" rel="apple-touch-icon"> | |
<!-- iPad (Retina) Icon --> | |
<link href="apple-touch-icon-144x144.png" sizes="144x144" rel="apple-touch-icon"> | |
<!-- iPhone Splashscreen --> | |
<link href="apple-touch-startup-image-320x460.png" media="(device-width: 320px)" rel="apple-touch-startup-image"> | |
<!-- iPhone (Retina) Splashscreen --> | |
<link href="apple-touch-startup-image-640x920.png" media="(device-width: 320px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image"> | |
<!-- iPad (portrait) Splashscreen --> | |
<link href="apple-touch-startup-image-768x1004.png" media="(device-width: 768px) and (orientation: portrait)" rel="apple-touch-startup-image"> | |
<!-- iPad (landscape) Splashscreen --> | |
<link href="apple-touch-startup-image-748x1024.png" media="(device-width: 768px) and (orientation: landscape)" rel="apple-touch-startup-image"> | |
<!-- iPad (Retina, portrait) Splashscreen --> | |
<link href="apple-touch-startup-image-1536x2008.png" media="(device-width: 1536px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image"> | |
<!-- iPad (Retina, landscape) Splashscreen --> | |
<link href="apple-touch-startup-image-2048x1496.png" media="(device-width: 1536px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment