← Back to Audit Service

Quick Accessibility Wins

5-minute fixes for the most common issues. Based on auditing 18 Show HN projects.

97%
of websites fail basic accessibility checks

1. Color Contrast

100% of sites

The Problem

Text too light against background. WCAG requires 4.5:1 contrast ratio for normal text.

Quick Fix

/* Instead of light gray */
color: #999;  /* Bad: 2.7:1 on white */

/* Use darker gray */
color: #595959;  /* Good: 7:1 on white */

Tool: WebAIM Contrast Checker

2. Missing Form Labels

44% of sites

The Problem

Screen readers can't identify what inputs are for.

Quick Fix

<!-- Bad -->
<input type="email" placeholder="Email">

<!-- Good -->
<label for="email">Email address</label>
<input type="email" id="email">

3. Heading Order

39% of sites

The Problem

Skipping levels (h1 → h3) breaks screen reader navigation.

Quick Fix

<!-- Bad -->
<h1>My App</h1>
<h3>Features</h3>  <!-- Skipped h2! -->

<!-- Good -->
<h1>My App</h1>
<h2>Features</h2>

4. Buttons Without Names

28% of sites

The Problem

Icon-only buttons are announced as just "button" by screen readers.

Quick Fix

<!-- Bad -->
<button><svg>close icon</svg></button>

<!-- Good -->
<button aria-label="Close menu">
  <svg aria-hidden="true">close icon</svg>
</button>

5. Missing Landmarks

33% of sites

The Problem

Assistive tech can't help users skip to content.

Quick Fix

<header>Logo and nav</header>
<main>Primary content</main>
<footer>Copyright</footer>

Testing Checklist

Want a Full WCAG 2.1 AA Audit?

I'll test what automated tools miss and give you prioritized fix recommendations.

Get Your Audit ($99) →