Skip to content

Instantly share code, notes, and snippets.

@ArnaudD
Created January 6, 2011 09:56
Show Gist options
  • Save ArnaudD/767721 to your computer and use it in GitHub Desktop.
Save ArnaudD/767721 to your computer and use it in GitHub Desktop.
HTML 5 Boilerplate
<!doctype html>
<!--[if lt IE 7 ]><html lang="en" class="no-js ie6"><![endif]-->
<!--[if (gt IE 6)|!(IE)]><!--><html lang="en" class="no-js"><!--<![endif]-->
<head>
<meta charset="utf-8">
<title></title>
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="/favicon.ico">
<script src="js/modernizr-1.6.min.js"></script>
<!-- Remove the script reference below if you're using Modernizr -->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body class="home">
<header id="hd1">
<hgroup>
<h1>Easy HTML5 Template</h1>
<h2>tagline</h2>
</hgroup>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header><!-- #hd1 -->
<section id="main">
<header>
<h1>This is a Page Sub Title</h1>
</header>
<p>Some content...</p>
<h2>Demonstrating EM and STRONG</h2>
<p><strong>This text will have more importance (SEO-wise and contextually)</strong></p>
<p><b>This text has visual importance but has no contextual or SEO importance</b></p>
<p>This is a <em>very</em> collooqial expression.</p>
<footer>
<p>Author: <cite>Louis Lazaris</cite></p>
</footer>
</section><!-- #main -->
<aside id="sidebar">
<p>Sidebar content</p>
</aside>
<footer id="f1">
<p>copyright &copy; year</p>
</footer><!-- #f1 -->
<!-- jQuery version might not be the latest; check jquery.com -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script>!window.jQuery && document.write(unescape('%3Cscript src="js/jquery-1.4.4.min.js"%3E%3C/script%3E'))</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment