All rules Run your first audit
optimizationStructure
Wrap menus in <nav>
A <nav> landmark tells agents where the primary navigation is without scanning every link.
Score weight−5
Capability checkUse semantic navigation
The “Use semantic navigation” check passes when the page has a <nav> landmark (or fewer than three links). Menus built from generic divs waste an agent’s context budget hunting for destinations.
Div soup to landmarks
<!-- before -->
<div class="menu">
<div><a href="/">Home</a></div>
<div><a href="/pricing">Pricing</a></div>
</div>
<!-- after -->
<nav aria-label="Main">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/pricing">Pricing</a></li>
</ul>
</nav>See if your page fails this rule.
The audit runs every documented check and reports the ones that fail, with fixes.
