Skip to content

Instantly share code, notes, and snippets.

@WillsonSmith
Last active December 16, 2015 22:09
Show Gist options
  • Save WillsonSmith/5505500 to your computer and use it in GitHub Desktop.
Save WillsonSmith/5505500 to your computer and use it in GitHub Desktop.
A snippet for the basics of an HTML page.
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta charset="utf-8">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id='container' class='container'>
<p>My view has been loaded</p>
</div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/jquery.js"><\/script>')</script>
<script src='js/script.js'></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment