Created
July 1, 2017 13:46
-
-
Save kennethlarsen/139b4ce566d5e5de0d553fd4704cb5ba to your computer and use it in GitHub Desktop.
Accessibility: Headings
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
<!-- 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