short H1
H1 tags under 10 characters are too generic to be useful for SEO
What it is
crawler.sh flags a page as having a short H1 when the <h1> tag contains fewer than 10 characters. This is check #21 in the SEO analysis.
Why it matters for SEO
An extremely short H1 is usually too vague to provide meaningful topical signals:
- Generic keywords - Short H1 tags like “Blog”, “Home”, or “News” don’t target specific search queries.
- Missed opportunity - The H1 is a strong ranking signal. A short, generic heading wastes that potential.
- Poor differentiation - Vague headings make it harder for search engines to distinguish the page from similar pages on your site or competitors’ sites.
Why it matters for AEO
AI answer engines need clear topic indicators to decide whether a page is relevant to a query. A short, generic H1 like “FAQ” or “About” provides minimal context, reducing the chance that AI systems will cite the page in detailed answers.
How to fix it
Expand the H1 to describe the page’s specific topic:
<!-- Before: too short --><h1>Blog</h1><h1>FAQ</h1>
<!-- After: descriptive --><h1>Engineering Blog</h1><h1>Frequently Asked Questions About Pricing</h1>Guidelines:
- Keep H1 tags between 10 and 70 characters
- Be specific about the page’s content
- Include the primary keyword naturally
- Avoid single-word headings unless the page truly covers only that broad topic
What crawler.sh reports
In the CLI, short H1 tags appear under the “Short H1” section of crawler seo output. Each affected URL is listed with the H1 text. In the desktop app, they appear in the SEO Issues card.
Tip: If your H1 could apply to thousands of different pages, it’s too generic. Make it specific enough to clearly identify the page’s unique content.