Skip to content

Instantly share code, notes, and snippets.

@samtiffin
Created January 14, 2014 15:53
Show Gist options
  • Save samtiffin/8420532 to your computer and use it in GitHub Desktop.
Save samtiffin/8420532 to your computer and use it in GitHub Desktop.
HTML5 Document Outline Example
<!DOCTYPE html>
<html>
<body>
<header>
<h1>Main Heading</h1>
</header>
<section>
<h2>Section One</h2>
<article>
<h3>Article Heading</h3>
<h4>Article Sub-Heading</h4>
</article>
<article>
<h3>Article Heading</h3>
</article>
<article>
<h3>Article Heading</h3>
<h4>Article Sub-Heading</h4>
</article>
</section>
<section>
<h2>Section Two</h2>
</section>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<header>
<h1>HTML5 Document Outline</h1>
</header>
<section>
<h1>Section One</h1>
<article>
<h1>Article Heading</h1>
<h2>Article Sub-Heading</h2>
</article>
<article>
<h1>Article Heading</h1>
</article>
<article>
<h1>Article Heading</h1>
<h2>Article Sub-Heading</h2>
</article>
</section>
<section>
<h1>Section Two</h1>
</section>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment