Skip to content

Instantly share code, notes, and snippets.

@0xradical
Forked from rwbaker/html5template.html
Created October 17, 2011 00:52
Show Gist options
  • Save 0xradical/1291669 to your computer and use it in GitHub Desktop.
Save 0xradical/1291669 to your computer and use it in GitHub Desktop.
HTML5 Template
<!doctype html>
<!--[if lt IE 7]> <html class="ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="ie8 oldie" lang="en"> <![endif]-->
<!--[if IE 9]> <html class="ie9" lang="en"> <![endif]-->
<!--[if gt IE 9]><!-->
<html lang="en">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<title></title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Disables page scaling in mobile browsers -->
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<script src="js/preload.js"></script>
</head>
<body>
<div id="container">
<header>
</header>
<div id="main" role="main">
</div>
<footer>
</footer>
</div>
<!-- end of #container -->
<!-- Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if offline. Doesn't work when testing locally -->
<!--
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/libs/jquery-1.6.2.min.js"><\/script>')</script>
-->
<script src="js/libs/jquery-1.6.2.min.js"></script>
<script defer src="js/actions.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment