Skip to content

Instantly share code, notes, and snippets.

@ansonparker
Last active September 27, 2015 05:48
Show Gist options
  • Save ansonparker/1221324 to your computer and use it in GitHub Desktop.
Save ansonparker/1221324 to your computer and use it in GitHub Desktop.
Super-simple HTML template
<!DOCTYPE html>
<html lang="en">
<head>
<title> _title_ </title>
<meta charset="utf-8" />
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script>
$("document").ready( function() {
// code
});
</script>
<style>
/* css */
</style>
</head>
<body>
</body>
</html>
@ansonparker
Copy link
Author

Just a really, really short and simple template for putting together little one-page prototypes and demos. Hence having the style tag in the page.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment