Skip to content

Instantly share code, notes, and snippets.

@dennisschipper
Created December 17, 2011 23:49
Show Gist options
  • Save dennisschipper/1491838 to your computer and use it in GitHub Desktop.
Save dennisschipper/1491838 to your computer and use it in GitHub Desktop.
Html5 starter kit
<!doctype html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="styles.css">
<!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
<body>
<div id="wrapper">
<header>
</header>
<div id="content">
<section>
</section>
</div>
<footer>
</footer>
</div>
</body>
</html>
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, hr, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figure, figcaption, hgroup, menu, footer, header, nav, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; }
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
BODY {
background: #fff;
font-family: helvetica, verdana, sans-serif;
font-size: 1em;
color: #202020;
line-height: 1.6em;
padding: 0px;
margin: 0px;
}
H1, H2, H3, H4, H5 {
font-weight: normal;
}
.centered {
text-align: center;
}
.clear {
clear: both;
}
.left {
float: left;
}
.right {
float: right;
}
hr {
border: 0px;
height: 0px;
border-bottom: 1px solid #cecece;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment