Skip to main content
Sample Report

Accessibility Scan Report

Example Ecommerce Store

Scanned: Dec 14, 2025
48 pages analyzed

Critical Issues

2

Serious Issues

2

Moderate Issues

1

Total Instances

72

Prioritized Issues

Critical
WCAG 1.1.1
12 instances

Images missing alternative text

12 product images on the homepage are missing alt attributes, making them invisible to screen reader users.

Impact:

Screen reader users cannot understand the content or purpose of these images. This affects 15% of your potential customers.

✗ Current Code

<img src="/product-123.jpg" class="product-image">

✓ Fixed Code

Add descriptive alt text: <img src="/product-123.jpg" alt="Blue cotton t-shirt, front view" class="product-image">
Affected pages:
/
/products
/collections/summer
Critical
WCAG 1.3.1
8 instances

Form inputs missing labels

The newsletter signup and checkout forms have inputs without properly associated labels.

Impact:

Users with assistive technology won't know what information to enter in these fields, potentially blocking purchases.

✗ Current Code

<input type="email" placeholder="Enter your email">

✓ Fixed Code

<label for="email">Email address</label><input type="email" id="email" placeholder="Enter your email">
Affected pages:
/checkout
/newsletter
Serious
WCAG 1.4.3
45 instances

Insufficient color contrast

The 'Add to Cart' button text has a contrast ratio of 3.2:1 against its background (minimum 4.5:1 required).

Impact:

Users with low vision or color blindness may struggle to read button text, reducing conversion rates.

✗ Current Code

<button style="background: #34d399; color: #10b981">Add to Cart</button>

✓ Fixed Code

<button style="background: #059669; color: #ffffff">Add to Cart</button>
Affected pages:
/products/*
/collections/*
Serious
WCAG 2.4.7
1 instance

Focus indicator missing

Interactive elements lose visible focus when navigating with keyboard.

Impact:

Keyboard users cannot see which element is currently focused, making navigation nearly impossible.

✗ Current Code

button, a, input { outline: none; }

✓ Fixed Code

button:focus-visible, a:focus-visible { outline: 2px solid #059669; outline-offset: 2px; }
Affected pages:
All pages
Moderate
WCAG 2.4.4
6 instances

Non-descriptive link text

Multiple links use generic text like 'Click here' or 'Read more' without context.

Impact:

Screen reader users navigating by links won't understand where these links lead.

✗ Current Code

<a href="/blog/post-1">Read more</a>

✓ Fixed Code

<a href="/blog/post-1">Read more about sustainable fashion trends</a>
Affected pages:
/blog
/about
Proof Pack Preview

Document your compliance journey

With Just11y, you get monthly Proof Packs showing what was found, fixed, and when.

Example Ecommerce Store

Proof Pack — December 2025

Audit Trail
Issues identified this month24
Issues resolved18
Average resolution time3.2 days
Compliance score78% → 89%
Report generatedDec 14, 2025 at 10:42 AM

Full Proof Pack includes detailed remediation logs, screenshots, and WCAG reference documentation.

Try It Yourself

Want to scan your own site right now?

Try our real scanner for free — no signup required. Get your top 10 issues instantly.

Try the Real Scanner Now

Get your own accessibility report

See your top 10 issues with a free sample scan. No commitment required.