Headings aren't decoration. They're the outline of your page: the structure that tells a reader, a search engine, a screen reader, and an AI answer engine how your content is organized and which parts matter. When the outline is clean, everyone can find their way. When it's a mess of styled <div>s and skipped levels, everyone has to work harder, and some of them just leave.
The good news: getting headings right is mostly mechanical, and our check looks for three specific things you can fix today.
The three rules
1. Exactly one H1. The H1 is the page's main title, its single biggest "this is what the page is about" signal. Zero H1s leaves engines guessing; multiple H1s split the signal. One, and only one.
2. A logical order, no skipped levels. Headings nest like an outline: H1 contains H2s, H2s contain H3s. Don't jump from an H1 straight to an H3 because you liked the smaller font. If you need a smaller heading, style it with CSS. Don't break the hierarchy to get it.
3. Real headings, not fake ones. A big bold line made from a <div> or <p> looks like a heading but isn't one to a machine. Use actual <h1>–<h6> tags so the structure is real, not just visual.
Why it matters beyond SEO
This is one of those checks that pays off in three directions at once:
- Search engines use your heading outline to understand the page's topics and sub-topics.
- AI answer engines lean on headings to find the passage that answers a question. Clear, question-shaped headings make your content far more answerable. A heading that mirrors how people ask ("How much does it cost?") is an anchor an engine can grab.
- Screen readers let people jump from heading to heading. A broken hierarchy makes your page genuinely hard to use for someone relying on assistive tech. This is accessibility, plain and simple.
It also ties into entity clarity: your single H1 should agree with your title tag about what the page is.
What good structure looks like
H1: Product analytics for SaaS teams
H2: What you can measure
H3: Feature adoption
H3: Retention cohorts
H2: How pricing works
H2: Frequently asked questions
H3: Do you use cookies?
H3: Can I export my data?
One H1 stating the topic. H2s for major sections. H3s nested under them. No jumps. A reader skimming the headings alone understands the whole page, which is exactly what machines do too.
How to fix a messy page
- Find your H1. If there are several, demote all but the main one to H2. If there are none, promote your title line to a real
<h1>. - Walk the page top to bottom and check the levels only ever step down by one. Fix any H1 → H3 jumps.
- Hunt for "fake" headings (big bold text that isn't an actual heading tag) and convert them.
- While you're there, rewrite vague section labels ("Overview," "More") into descriptive, question-shaped headings where it fits.
Most CMS editors make this easy: the heading dropdown sets the real tag. The trouble usually comes from pasted content or custom blocks that hardcode styles instead of semantics.
Common mistakes
- Multiple H1s, often a theme that wraps both the site name and the post title in
<h1>. - No H1 at all: the title is styled with a
<div>. - Skipped levels: jumping to a smaller heading for visual size instead of using CSS.
- Headings used for styling: applying a heading tag to non-heading text just to make it big.
- Label headings like "Section 1" or "Info" that tell readers and engines nothing.
FAQ
Can a page have more than one H1?
The HTML spec technically tolerates it in some contexts, but for SEO and clarity, stick to one. A single H1 sends one clean signal about the page's topic.
Does the H1 have to match the title tag?
They should agree on the topic, not necessarily word-for-word. The title often includes the brand; the H1 is usually a cleaner statement of the subject.
Is it bad to skip from H2 to H4?
Yes. It breaks the outline for screen readers and muddies structure for engines. Step levels down by one. Use CSS for size.
Do headings really affect AI answers?
They help a lot. Answer engines use headings to locate the passage that responds to a query, so clear, descriptive headings make you easier to cite.
Key Takeaways
- A page should have exactly one H1: zero H1s leaves search engines guessing about the topic, and multiple H1s split that signal.
- Heading levels must step down by one (H1 to H2 to H3) with no skipped levels, because a jump like H1 to H3 breaks the outline screen readers rely on and muddies structure for search engines.
- Use real
<h1>through<h6>tags rather than styled<div>or<p>elements, since text that only looks like a heading is invisible as a heading to machines and assistive technology. - AI answer engines use headings to locate the passage that answers a question, so question-shaped headings that mirror how people ask make your content easier to cite.
Want to see if your pages have one clean H1 and a sensible outline? Run a free audit. We check heading counts and order on every page. More in the SEO explainers.



