Created
November 12, 2013 11:48
-
-
Save jackabox/7429598 to your computer and use it in GitHub Desktop.
Standard HTML Page 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> | |
<!--[if IE 8]><html class="no-js lt-ie9" lang="en"> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]--> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> | |
<meta http-equiv="content-language" content="en" /> | |
<meta name="description" content="__description__" /> | |
<meta name="keywords" content="__keywords__" /> | |
<meta name="author" content="Jackabox" /> | |
<meta name="viewport" content="width=device-width" /> | |
<title>__title__</title> | |
<!-- StyleSheets --> | |
<link rel="stylesheet" href="css/normalize.css" /> | |
<link rel="stylesheet" href="css/screen.css" /> | |
<!-- The JavaScript --> | |
<script src="js/libs/modernizr.min.js"></script> | |
</head> | |
<body> | |
<script src="js/libs/jquery.1.10.2.min.js"></script> | |
<script src="js/main.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment