An accessibility audit checks a website against standards like WCAG, documents what fails, and retests after fixes go in.
Why audits matter
Automated scanners catch a lot: duplicate IDs, missing alt text, broken label associations. They won't catch everything. Many WCAG criteria need someone tabbing through the page, listening with a screen reader, or checking that focus order actually makes sense.
How audits typically work
- Pick the pages and user flows that matter most.
- Run automated scans on those templates.
- Test interactions manually, including keyboard navigation and error states.
- Try it with a screen reader.
- Write up findings with severity levels and remediation steps.
- Retest after the fixes land.
Code example
A common finding is a form input with no associated label:
<!-- Screen readers can't identify this field -->
<input type="text" placeholder="Email">
<!-- Fixed -->
<label for="email">Email</label>
<input id="email" type="email" autocomplete="email">
Related terms
Help us improve this glossary term
Scan your site
Rocket Validator scans thousands of pages in seconds, detecting accessibility and HTML issues across your entire site.