โ Correct
<h1>Course Registration</h1> <h2>Spring 2026 Schedule</h2> <h2>How to Register</h2>
How to create proper heading hierarchies in web pages and documents.
๐๏ธ Foundation of accessible content
Headings (H1-H6) are one of the most important accessibility features. They provide:
WebAIM's screen reader user surveys consistently show that navigating by headings is the primary way users explore web pages. 67.5% of users report navigating by headings "always" or "often" (WebAIM Survey #10, 2024).
The H1 should be the main page title. It tells users what the page is about.
<h1>Course Registration</h1> <h2>Spring 2026 Schedule</h2> <h2>How to Register</h2>
<h1>University of Arizona</h1> <h1>Course Registration</h1> <h1>Spring 2026</h1>
Go from H1 โ H2 โ H3 in order. Never jump from H1 to H3 or H2 to H5.
H1: Page Title
H2: Major Section
H3: Subsection
H3: Subsection
H2: Another Section
H3: Subsection
H1: Page Title
H3: Section (skipped H2!)
H5: Topic (skipped H4!)
H2: Another Section
Each heading should clearly describe the section that follows it.
Don't choose heading levels based on how they look. Use CSS for visual styling.
<h2>Contact Information</h2>
/* Style with CSS */
h2 { font-size: 1.5rem; }
<!-- H4 used because it's smaller --> <h4>Contact Information</h4> <!-- But this breaks hierarchy -->
<h1>Main Page Title</h1> <h2>Major Section</h2> <h3>Subsection</h3> <h4>Sub-subsection</h4> <h5>Minor section</h5> <h6>Smallest heading</h6>
<p><strong>Section Title</strong></p> looks like a heading but isn't<p class="h2">Title</p> has no semantic meaning<h2></h2> or headings with only images and no textYou can add heading roles with ARIA, but native HTML is preferred:
<!-- Native (preferred) --> <h2>Section Title</h2> <!-- ARIA (use only when necessary) --> <div role="heading" aria-level="2">Section Title</div>
Use Word's Styles gallery (Home tab) to apply Heading 1, Heading 2, etc. These will transfer when copying to web editors.
H1: ENGL 101: Introduction to Academic Writing
H2: Course Description
H2: Learning Outcomes
H2: Required Materials
H3: Textbooks
H3: Software
H2: Grading
H3: Assignments
H3: Participation
H2: Schedule
H3: Week 1
H3: Week 2
H2: Policies
H3: Attendance
H3: Academic Integrity
H1: Department of Chemistry
H2: About Us
H2: Academic Programs
H3: Undergraduate
H3: Graduate
H3: Research
H2: People
H3: Faculty
H3: Staff
H3: Graduate Students
H2: News & Events
H2: Contact