Additional Resources
Using header elements - WAI recommended technique.
View WAI checkpoint 3.5 - Use header elements to convey document structure and use them according to specification.
NOTE: Because your web browser does not support web standards, you will only
be able to view the content in a linearized format. To use this site to it's
fullest, you may wish to upgrade to a browser that supports web standards.
Additional Resources
Using header elements - WAI recommended technique.
View WAI checkpoint 3.5 - Use header elements to convey document structure and use them according to specification.
Priority 1 Item 9
Use markup according to specification. For example, use
header elements to convey document structure. Mark up lists and list
items properly. Mark up quotations. Do not use quotation markup for
formatting effects such as indentation.
![]()
![]()
Why use header elements to convey document
structure?
Many people navigate or skim through documents by reading the headings
to get a feel for the structure and an overview of the content and
scope of a document.
Also, some screen readers will read content assigned as a header in a different tone of voice to other content on the page, providing users with important clues about document structure. Misusing heading attributes will therefore misinform and confuse screen reader users.
![]()
![]()
Why mark up lists?
Screen reader users will refer to the numbers in an ordered list for navigation
and context. If the numbers do not relate to a clear structural hierarchy,
users will be easily confused.
Mark up quotations. Do not use quotation markup for formatting effects such as indentation.
"The power of the Web is in its universality. Access by everyone regardless of disability is an essential aspect."
-- Tim Berners-Lee, W3C Director and inventor of the World Wide Web
The appropriate use of the blockquote tag.
<body>
<blockquote>
<p>
"The power of the Web is in its universality.
Access by everyone regardless of disability is an essential
aspect."
<br>
-- Tim Berners-Lee,
<acronym title="World Wide Web Consortium">W3C</acronym>
Director and inventor of the World Wide Web
</p>
</blockquote>
</body>