We respect your privacy.

We use strictly necessary cookies to keep you signed in and to protect against CSRF. With your permission we also use a small amount of first-party analytics to improve the product. We do not sell your data and we do not use third-party advertising trackers. See our cookie policy and privacy policy .

← All learn topics

Rule page.h1.multiple

Reduce to a single <h1>

page.h1.multiple is a check in Crawlmind's site audit that grades low-impact issues of this kind. This page explains why the rule matters and the exact fix.

Impact: lowEffort: lowFixable: 1-click

Why it matters

HTML5 technically allows multiple H1s inside <section>/<article> outlines, but every real-world consumer (Google, Perplexity, screen readers) treats only ONE H1 as the page topic. Multiple H1s dilute the topical signal. Convert the extras to H2.

The fix

```html
<!-- Before -->
<h1>Pricing</h1>
<h1>Compare plans</h1>      <!-- 👈 demote -->
<h1>FAQ</h1>                <!-- 👈 demote -->

<!-- After -->
<h1>Pricing</h1>
<h2>Compare plans</h2>
<h2>FAQ</h2>
```

References