0Pricing
Web Accessibility Academy · Lesson

Headings Are Navigation, Not Just Big Text

How users jump heading-to-heading to scan a page.

Headings Are Navigation, Not Just Big Text is a free Web Accessibility Academy lesson on CoddyKit — lesson 3 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Web Accessibility Academy learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.

Headings Are a Menu

To a screen reader user, your headings are a table of contents. They are not just bold text; they are how people move through a page. 🧭

Jump Heading to Heading

One keypress moves a screen reader from one heading to the next. Users skim a page by hopping between headings, not by reading every word.

Pull Up the Whole List

Many screen readers can list every heading at once, like a pop-up outline. Users scan that list to find the section they want.

Jump to a Level

Users can also jump only between same-level headings, like all the h2 sections. Good levels make this shortcut precise and fast.

Fake Headings Vanish

A bold styled div looks like a heading but is invisible to this navigation. Screen reader users simply never find it.

<div class="big-bold">Pricing</div>

Use Real Heading Tags

Only real h1 through h6 tags join the navigation list. Styling text big does nothing; the tag is what carries the meaning.

<h2>Pricing</h2>

Headings Need Words

Each heading is a signpost, so write descriptive text. Reading the headings alone should give a clear map of the page.

Frequency Helps

Long sections with no heading leave users stranded with no shortcut to jump to. Break content up so people can land near what they need.

Do Not Overdo It

Marking every line as a heading floods the navigation list and hides the real structure. Reserve headings for genuine section starts.

Headings Build Trust

A clear heading outline tells users a page is well built. They navigate faster and stay confident they will not miss content.

Sighted Users Win Too

Real headings also feed in-page links, browser outlines, and search engines. Good structure quietly helps everyone, not only screen readers.

Quick Check

How do many screen reader users primarily move through a page?

Recap

You learned that real headings form a navigable outline. Users jump between them, so use true heading tags with descriptive words. ✅

Frequently asked questions

Is the “Headings Are Navigation, Not Just Big Text” lesson free?

Yes — the full text of “Headings Are Navigation, Not Just Big Text” is free to read here on the web, and the Web Accessibility Academy course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Web Accessibility Academy course, upgrade to CoddyKit PRO.

What will I learn in “Headings Are Navigation, Not Just Big Text”?

How users jump heading-to-heading to scan a page. You practise Web Accessibility Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.

Do I need any experience to start Web Accessibility Academy?

No prior experience is required. Web Accessibility Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 3 of 4, so you can start here or from the beginning and move at your own pace.

How long does the “Headings Are Navigation, Not Just Big Text” lesson take?

Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.

Can I write and run code in this Web Accessibility Academy lesson?

Yes. Every Web Accessibility Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.

All lessons in this course

  1. One h1 Per Page: Naming the Main Topic
  2. Nesting Levels Without Skipping
  3. Headings Are Navigation, Not Just Big Text
  4. Auditing a Page Outline by Ear
← Back to Web Accessibility Academy