Skip to content

Instantly share code, notes, and snippets.

@jCrip
Created March 15, 2012 14:25
Show Gist options
  • Save jCrip/2044445 to your computer and use it in GitHub Desktop.
Save jCrip/2044445 to your computer and use it in GitHub Desktop.
Web App Meta Tags
<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