2.4.5Niveau AA2.4 Navigable
Accès multiples
More than one way is available to locate a web page within a set of web pages, except where the web page is the result of, or a step in, a process.
Ce que cela signifie
Comprendre Accès multiples (en anglais) | Comment satisfaire à Accès multiples (en anglais) (Niveau AA) Une page Web peut être située par plus d’un moyen dans un ensemble de pages Web sauf si cette page est le résultat ou une étape d’un processus .
Failing example
<!-- Fails: site has no search, no sitemap, only main nav -->
<!-- Users who land mid-site have no way to discover
other content without using browser history -->How to fix it
<!-- Pass: provide at least two of these:
1. Navigation menu
2. Site search
3. Site map / index page
4. Related links on each page
5. Table of contents for long pages
-->
<header>
<nav aria-label="Main navigation"><!-- ... --></nav>
<form role="search" action="/search">
<input type="search" aria-label="Search the site" name="q">
<button type="submit">Search</button>
</form>
</header>Comment A11yRisk détecte cela
A11yRisk détecte ce critère automatiquement.
Analyser votre site pour cette violation →