Created
February 9, 2018 17:44
-
-
Save bengolder/1d48f35e69e46c5c4b6c1f3d62f4c8a5 to your computer and use it in GitHub Desktop.
keyboard navigation HTML examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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