Skip to content

Instantly share code, notes, and snippets.

@bengolder
Created February 9, 2018 17:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bengolder/1d48f35e69e46c5c4b6c1f3d62f4c8a5 to your computer and use it in GitHub Desktop.
Save bengolder/1d48f35e69e46c5c4b6c1f3d62f4c8a5 to your computer and use it in GitHub Desktop.
keyboard navigation HTML examples
<!-- Don't mess with tab index -->
<div tabindex="3">This is BAD</div>
<!-- Use semantic tags to structure the page -->
<!-- Don't skip heading levels -->
<!-- Use a single h1 for the page title -->
<main>
<article>
<header>
<h1>The title of this page.</h1>
</header>
<h2>A section of this page</h2>
<!-- Divs do not affect doc outline -->
<div>
<h2>Another section of this page</h2>
</div>
</article>
<footer>
</footer>
</main>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment