Skip to content

Instantly share code, notes, and snippets.

@tomkr
Last active September 30, 2015 17:48
Show Gist options
  • Save tomkr/1838730 to your computer and use it in GitHub Desktop.
Save tomkr/1838730 to your computer and use it in GitHub Desktop.
Basic HTML index page for a mobile web app
<!DOCTYPE html>
<html lang="en" manifest="cache.manifest">
<head>
<meta charset="utf-8">
<title>Mobile Web Dev</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="apple-touch-startup-image" href="startup-image.png">
<link rel="apple-touch-icon" href="icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="icon-114x114.png">
<link rel="apple-touch-icon" sizes="144x144" href="icon-144x144.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<script src="app.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment