Created
March 15, 2012 14:25
-
-
Save jCrip/2044445 to your computer and use it in GitHub Desktop.
Web App Meta Tags
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="apple-mobile-web-app-capable" content="yes"> | |
<meta name="apple-mobile-web-app-status-bar-style" content="black" /> | |
<link rel="apple-touch-startup-image" href="img/splash-screen.png" /> | |
//iPad Landscape | |
<link rel="apple-touch-startup-image" sizes="1024x748" href="img/splash-screen-1024x748.png" /> | |
//iPad Portrait | |
<link rel="apple-touch-startup-image" sizes="768x1004" href="img/splash-screen-768x1004.png" /> | |
//iPhone Portrait | |
<link rel="apple-touch-startup-image" href="img/splash-screen-320x460.png" /> | |
//iPhone Portrait Hi Res | |
<link rel="apple-touch-startup-image" sizes="640x960" href="img/splash-screen-640x960.png" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment