Skip to content
atlookup

missing H1 Tag

The H1 is the main on-page heading — a crucial signal for Google and screen-reader users.

warning Impact: high WCAG 2.4.6 (Level AA) H1_MISSING 2 min read Updated

Why it matters

The H1 is the main on-page heading — a crucial signal for Google and screen-reader users. Pages without an H1 lose a significant on-page SEO signal and fail accessibility.

Schedule a fix in your next sprint. Warnings won't block your site but they consistently leave performance on the table. Estimated SEO impact: high — direct effect on rankings or impressions.

How to fix

  • Add exactly one visible <h1> that describes the page topic
  • Place it near the top of the main content area
  • Include the primary target keyword naturally

Common causes

If the rule is firing across many pages, the root cause is almost always one of these:

  • Editorial team copy-pastes from another page and brings its heading levels with it.
  • Theme uses headings for visual styling rather than document structure.
  • WYSIWYG editor inserts new headings at whichever level the cursor was last on.
  • Multi-author pages stitch sections together without a single owner of the outline.

Anti-patterns to avoid

Even with the best intentions, these "fixes" make the issue worse — recognise them so you don't ship them:

  • Skipping levels (<h1> directly to <h4>) for visual styling.
  • Multiple <h1>s on one page because each section "felt like a top heading".
  • Using headings as decorative dividers without semantic content.

Example

Here's a typical instance — the problematic line is highlighted in red:

example.html HTML
<body>
  <p>Content starts here…</p>
</body>

And the fix — the corrected line, highlighted in green:

example.html HTML · fixed
<body>
  <h1>Primary page heading</h1>
  <p>Content starts here…</p>
</body>

How atlookup detects this

Our crawler renders each page with a real headless browser, then walks the heading tree and checks for missing levels, duplicates, and skipped depths. Pages where the rule fires for missing h1 tag are flagged on the report.

If you'd like to see this rule fire on your own site, run a free 60-second audit — every page is reported with the exact lines that triggered it.

Tools to verify the fix

Once you've applied the fix, double-check with these external validators:

  • axe DevTools — Flags heading-order violations (a11y + SEO).
  • HeadingsMap — Browser extension that visualises the heading tree.

Frequently asked questions

Why does Missing H1 Tag matter for SEO?

The H1 is the main on-page heading — a crucial signal for Google and screen-reader users. Pages without an H1 lose a significant on-page SEO signal and fail accessibility.

How do I fix missing h1 tag?

Add exactly one visible <h1> that describes the page topic Place it near the top of the main content area Include the primary target keyword naturally

Is this a critical SEO issue?

Schedule a fix in your next sprint. Warnings won't block your site but they consistently leave performance on the table. Estimated SEO impact: high — direct effect on rankings or impressions.

How does atlookup detect missing h1 tag?

Our crawler renders each page with a real headless browser, then walks the heading tree and checks for missing levels, duplicates, and skipped depths. Pages where the rule fires for missing h1 tag are flagged on the report.

Does this affect accessibility?

Yes. This issue maps to WCAG 2.4.6 (Level AA). Fixing it improves both SEO ranking signals and the experience for users on assistive technology.