Muhammad Umer
Muhammad Umer

Reputation: 18159

For Site to be ADA compliant does it need to have H1 tag or the highest tag can be H3?

I have a project to make site Ada compliant however, i can't find details on this specific question.

Do i need H1 tag to be compliant.

Upvotes: 1

Views: 1434

Answers (1)

Jason Honingford
Jason Honingford

Reputation: 598

No, do not start with the H3 tag. You can lead some users to navigation error if you skip H1 and H2. They might think they've jumped too far, or the page is broken. https://www.w3.org/WAI/tutorials/page-structure/headings

H1 to H6 should not be used for font size, and you are free to style those to the size you need as long as you don't break other rules like not allowing the resizing of text by the user.

Broader Context

ADA and Section 508 do not specify any HTML requirements, so you must ultimately refer to W3C's guidelines. These guidelines link to the recommended HTML markup where it makes sense.

Web Content Accessibility Guidelines (WCAG) 2.0 https://www.w3.org/TR/WCAG

From a practical standpoint, just pick your favorite tool and correct the major issues. Since any user can do the same thing, it's best to protect yourself before someone sends out an email casting doubts on your ability to make a proper website. https://fae.disability.illinois.edu

Upvotes: 1

Related Questions