Accessibility Wiki

Page should contain a level-one heading

Rule page-has-heading-one · Structure & semantics · impact moderate · Static + live

↩ Back to the rules index · WCAG cross-reference

Why it matters

The h1 names the page’s primary topic and anchors the heading outline. Pages without one are harder to orient within.

How to fix

Add one <h1> (or role="heading" aria-level="1") describing the page’s main content.

Example

✕ Fails
<body><h2>Welcome</h2></body>
✓ Passes
<body><h1>Welcome</h1></body>

WCAG success criteria

1.3.1 Info and Relationships — Level A

Structure and relationships conveyed visually (headings, lists, tables, labels, groups) must also be available programmatically.

Understanding 1.3.1

Standards

This rule contributes to the following standards:

WCAG A EN 301 549 Best practice

Standard Criteria
EN 301 549 9.1.3.1

References

Generated from the EqualWeb accessibility engine’s rule metadata. Back to top ↑