Skip to content
Transparency

Sample Accessibility Report

This is a static example of the type of report our automated scanner generates. It highlights specific violations and provides the exact code needed to fix them.

Last updated: June 2026Ask AI about this

Clear, Actionable Findings

Our reports don't just tell you that you failed; they tell you exactly where the failure is and how to fix it.

Example Violation: Missing alt text

HTML: <img src='logo.png'> Violation: Images must have alternate text. WCAG: 1.1.1 Non-text Content.

The Fix

Update your code to include a descriptive alt attribute: <img src='logo.png' alt='Company Name Logo'>.

Beyond Automation

The report also highlights elements that require manual review, such as ensuring focus order is logical and color contrast is sufficient in all states.

Interactive Element Screenshot Example

Our enterprise worker headless browser securely renders your application and highlights exactly where accessibility failures occur. These context-rich annotated screenshots bridge the gap between compliance reports and developer action.

color-contrast

Serious
1.4.3Contrast (Minimum)AAcolor-contrastwcag2aawcag143.header > .nav-link
Affects 12 pages24 elements
e.g./about/contact+10 more

Fix any of the following: Element has insufficient color contrast of 2.94 (foreground color: #9ca3af, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1

Annotated element screenshot
Failing markup → example fix
Failing markup:
<a href="/about" class="nav-link text-gray-400 bg-white">About Us</a>
Example fix:
<a href="/about" class="nav-link text-gray-700 bg-white">About Us</a>

Example fix — guidance for your code, not applied to your site.

How to fix

Ensure that text has a contrast ratio of at least 4.5:1 against its background color to be legible for people with moderately low vision.

Read the axe guidance: color-contrast(opens in a new tab)

Last updated: June 2026