Skip to content

Instantly share code, notes, and snippets.

@sandorjanssen
Created August 14, 2013 14:00
Show Gist options
  • Save sandorjanssen/6231323 to your computer and use it in GitHub Desktop.
Save sandorjanssen/6231323 to your computer and use it in GitHub Desktop.
Basic HTML5 template using semantic tags
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Title</title>
</head>
<body>
<header>Header</header>
<nav>
<a href="#">Home</a>
</nav>
<main>
<article>
<h1>My article</h1>
<p>Content</p>
</article>
<aside>
<p>More information</p>
</aside>
</main>
<footer>Copyright 2013</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment