Skip to content

Instantly share code, notes, and snippets.

@luetkemj
Created April 5, 2013 19:37
Show Gist options
  • Save luetkemj/5322005 to your computer and use it in GitHub Desktop.
Save luetkemj/5322005 to your computer and use it in GitHub Desktop.
HTML: Quick Template
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The HTML5 Herald</title>
<meta name="description" content="Quick Template">
<meta name="author" content="luetkemj">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<style>
/*Styles in header go here*/
</style>
</head>
<body>
<div id="page">
</div>
<script>
jQuery(document).ready(function($) {
// Code using $ as usual goes here.
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment