Created
April 5, 2013 19:37
-
-
Save luetkemj/5322005 to your computer and use it in GitHub Desktop.
HTML: Quick Template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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