Skip to content

Instantly share code, notes, and snippets.

@kennethlarsen
Created July 1, 2017 13:46
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kennethlarsen/139b4ce566d5e5de0d553fd4704cb5ba to your computer and use it in GitHub Desktop.
Save kennethlarsen/139b4ce566d5e5de0d553fd4704cb5ba to your computer and use it in GitHub Desktop.
Accessibility: Headings
<!-- Bad headings -->
<h1>Cool company name</h1>
<h3>Buy stuff</h3>
<h3>Jobs</h3>
<h2>Get our app</h2>
<!-- Great headings -->
<h1>Cool company name</h1>
<h2>Buy stuff</h2>
<h2>Jobs</h2>
<h2>Get our app</h2>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment