Skip to content

Instantly share code, notes, and snippets.

@samuelfine
Created May 11, 2012 15:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samuelfine/2660430 to your computer and use it in GitHub Desktop.
Save samuelfine/2660430 to your computer and use it in GitHub Desktop.
Mobile Web App Skeleton
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="apple-touch-icon-precomposed" href="ICON_WITHOUT_GLOSS.png">
<link rel="apple-touch-icon" href="ICON_WITH_GLOSS.png">
<link rel="apple-touch-startup-image" href="HOMESCREEN_SPLASH.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default OR black OR black-translucent">
<meta name="viewport" content ="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
<title></title>
<link rel="stylesheet" type="text/css" href="OPTIONAL_EXTERNAL_CSS.css" />
<style type="text/css">
/* OPTIONAL INLINE CSS */
</style>
</head>
<body>
<script type="text/javascript" src="OPTIONAL_EXTERNAL_JAVASCRIPT.js"></script>
<script type="text/javascript">
/* OPTIONAL INLINE JAVASCRIPT */
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment