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.
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
SeriousFix 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
<a href="/about" class="nav-link text-gray-400 bg-white">About Us</a>
<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.
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.