Skip to content

Instantly share code, notes, and snippets.

@tutweb
Created January 24, 2013 17:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tutweb/4625450 to your computer and use it in GitHub Desktop.
Save tutweb/4625450 to your computer and use it in GitHub Desktop.
html5 starter template
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML5 Starter Template</title>
</head>
<body>
<header>
<hgroup>
<h1>Page Title</h1>
<h2>Page Subtitle</h2>
</hgroup>
</header>
<nav>
<ul>
<li><a href="#">Menu</a></li>
...
</ul>
</nav>
<section>
<article>
<header>
<h2>Title 1</h2>
<section>Content...</section>
</header>
</article>
<article>
<header>
<h2>Title 2</h2>
<section>Content...</section>
</header>
</article>
</section>
<aside>
Top Links....
</aside>
<figure>
<img src="..." alt="">
<figcaption>Chart 1.1</figcaption>
</figure>
<footer>
Copyright &copy;
<time datetime="2010-11-08">2010</time>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment