Skip to content

Instantly share code, notes, and snippets.

@martincr
Created April 5, 2011 14:05
Show Gist options
  • Save martincr/903653 to your computer and use it in GitHub Desktop.
Save martincr/903653 to your computer and use it in GitHub Desktop.
Basic layout using HTML5 layout elements
<!doctype html>
<html>
<head>
<title>Page title</title>
</head>
<body>
<header>
<h1>Page title</h1>
</header>
<nav>
<!-- Navigation -->
</nav>
<section id="intro">
<!-- Introduction -->
</section>
<section>
<!-- Main content area -->
</section>
<aside>
<!-- Sidebar -->
</aside>
<footer>
<!-- Footer -->
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment