Skip to content

Instantly share code, notes, and snippets.

@nextechu
Last active January 3, 2016 04:49
Show Gist options
  • Save nextechu/8412012 to your computer and use it in GitHub Desktop.
Save nextechu/8412012 to your computer and use it in GitHub Desktop.
Skeleton of HTML5 code.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Part 3</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
</head>
<body>
<header>masthead
</header>
<nav><ul><li>Nav1</li><li>Nav2</li><li>About</li></ul>
</nav>
<article id="container">
<aside>
aside
</aside>
<section>
section 1
</section>
<section>
section 2
</section>
</article>
<footer>
footer
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment