Skip to content

Instantly share code, notes, and snippets.

@bamb
Forked from AbeEstrada/index.html
Created March 22, 2012 20:34
Show Gist options
  • Save bamb/2163797 to your computer and use it in GitHub Desktop.
Save bamb/2163797 to your computer and use it in GitHub Desktop.
HTML: Basic Skeleton
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>title</title>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/style.css" />
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<style type="text/css">article, aside, figure, footer, header, hgroup, menu, nav, section, summary { display: block; }</style>
<![endif]-->
</head>
<body>
<div class="container">
<header>
</header>
<div class="main">
</div>
<footer>
</footer>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/jquery-1.7.1.min.js">\x3C/script>')</script>
<script>
$(function() {
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment