Skip to content

Instantly share code, notes, and snippets.

@marc-gist
Created April 7, 2013 13:40
Show Gist options
  • Save marc-gist/5330531 to your computer and use it in GitHub Desktop.
Save marc-gist/5330531 to your computer and use it in GitHub Desktop.
html5
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> </title>
<meta name="title" content="" />
<meta name="description" content="" />
<meta name="author" content="" />
<meta name="author" content="Your Name Here" />
<meta name="Copyright" content="Copyright Your Name Here 2013. All Rights Reserved." />
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<header>
<nav>
<ol>
<li><a href="#">Link 1</a></li>
<li><a href="#">Link 2</a></li>
<li><a href="#">Link 3</a></li>
</ol>
</nav>
</header>
<article>
<h1>Article Header </h1>
<p>Paragraph 1</p>
<h2>Article subhead</h2>
<p>Paragraph 2</p>
</article>
<aside>
<h2>Sidebar content</h2>
</aside>
<footer>
<p><small>&copy; Copyright here... </small></p>
</footer>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment