Catalog/Multiple <h1> elements
SEO issue

Multiple H1 tags: does it hurt SEO and how to fix it

Does having multiple H1 tags hurt SEO? What Google actually says, and a free check that flags every page with more than one H1 heading.

6359
audited sites affected

What it means

An HTML page has more than one <h1> element. This is a notice, not an error, but it signals that the page's heading hierarchy may be ambiguous.

Why it matters

Search engines use h1 elements to infer which content is most important on a page. Multiple h1s can confuse the hierarchy, which affects how the page is ranked and how AI agents parse the semantic structure. The issue matters most when the additional h1 elements compete for prominence rather than serving a clear structural role.

How to fix it

  1. Audit the page and identify which <h1> elements are actually the primary headings.
  2. Change non-primary headings to <h2> or lower, preserving the logical hierarchy.
  3. If using a framework like Next.js or Astro, verify that the <h1> is rendered in the initial HTML, not injected later by JavaScript.

Example

Before — HTML
<h1>Best Running Shoes 2026</h1>
<h1>Nike Pegasus 41 Review</h1>
<h1>Buy Now</h1>
After — HTML
<h1>Best Running Shoes 2026</h1>
<h2>Nike Pegasus 41 Review</h2>
<h2>Buy Now</h2>

Keep one <h1> as the page's true topic; demote the rest to <h2>/<h3> so the outline reflects the content hierarchy.

When it's not a problem

Multiple h1s are acceptable when they reflect a genuine multi-section layout (e.g., a landing page with distinct hero and content sections, each with its own prominent heading). The issue is a false alarm when the extra h1s are intentional and clearly subordinate to the primary heading.

How Crawlinx detects it

We parse the rendered DOM and count top-level <h1> elements. More than one on a single page trips this notice; the detail shows the exact count found.

How common is it?

6359 audited sites in our corpus currently show this issue. The breakdowns below show which platforms, gatekeepers, verticals and countries are most exposed.

FAQ

Is multiple H1 bad for SEO?
No direct ranking penalty — Google's John Mueller has said it can process multiple H1s. But it usually signals a broken outline or a template repeating H1 in the header, which weakens topical clarity.
How many H1 tags should a page have?
One. HTML5 technically allows an H1 per sectioning element, but for SEO and accessibility a single H1 describing the page is the safe, standard choice.
Does the logo in the header count as an H1?
Only if it's marked up as one. Wrapping a site logo in <h1> on every page is the most common cause of this flag — use a <div> or <p> for the logo instead.
Breakdowns

CMS

View breakdown →

Category

View breakdown →

Related
Catalog Missing <h1> Category CMS Content-Type header doesn't match the actual content Invalid hreflang language code Self hreflang language disagrees with html lang hreflang set has no self-reference

Audit your own site — free

157 checks, internal PageRank, render-diff. No signup, results in ~30s.

Scan your site →