Why ADA Compliance Matters Right Now
The Americans with Disabilities Act (ADA) has applied to websites since a series of landmark court decisions in the early 2010s. But enforcement has escalated sharply. In 2025, plaintiffs' attorneys filed over 4,600 federal accessibility lawsuits — a 14% increase over 2024 — and the DOJ finalized rules in 2024 making WCAG 2.1 Level AA the explicit legal standard for public-facing websites.
The typical small business settlement runs $25,000–$75,000. Legal fees add another $15,000–$40,000 even when you win. And serial plaintiffs — attorneys who file hundreds of cases per year — specifically target small businesses because they're more likely to settle quickly than fight.
The good news: accessibility violations are fixable. The top three violations — missing alt text, unlabeled forms, and low color contrast — account for roughly 80% of all complaints. Fix those three, and you've dramatically reduced your exposure.
The most-targeted businesses aren't the ones with the worst websites — they're the ones with the most web traffic and no accessibility compliance at all. E-commerce, restaurants, healthcare, and professional services account for the majority of filings. If people can find you on Google, a plaintiff's attorney can find you too.
The 10-Point ADA Website Compliance Checklist
These are the WCAG 2.1 Level AA requirements most directly tied to ADA lawsuit filings. Work through them in order — items 1–3 are responsible for the highest lawsuit risk and should be addressed first.
-
1
Alt Text on All Images
Every
High lawsuit risk<img>element needs a descriptivealtattribute. Screen readers read this text aloud to blind users. Missing alt text is the single most commonly cited violation in ADA demand letters. Decorative images should usealt=""(empty, not missing). Functional images (like buttons with icons) need alt text describing the action. -
2
Form Labels on Every Input
Every form input, select dropdown, and textarea needs either a
High lawsuit risk<label>element associated viaforattribute, or anaria-label. Without labels, screen readers announce inputs as "edit text" — leaving the user no idea what to type. Contact forms, checkout forms, email signup boxes — all of them. -
3
Color Contrast (4.5:1 Minimum)
Normal body text must have a contrast ratio of at least 4.5:1 against its background. Large text (18pt / 14pt bold and above) requires 3:1. Light gray on white, yellow on white, and many brand color combinations fail this test. Low-contrast text is unreadable for users with low vision or color blindness — and it's one of the most common automated violations found during pre-litigation scanning.
High lawsuit risk -
4
Full Keyboard Navigation
Every interactive element — links, buttons, menus, modals, accordions — must be operable using only a keyboard. Test by pressing Tab through your site with a mouse unplugged. Elements should receive visible focus indicators (you should be able to see which element is selected). You should never get "trapped" in a component that can't be exited without a mouse.
Medium lawsuit risk -
5
Descriptive Page Titles
Each page's
Medium lawsuit risk<title>tag must describe the specific page's content — not just the brand name. "Home" is not compliant. "ADA Compliance Scanner for Small Businesses | ADAFlags" is. Screen reader users hear the page title announced when a page loads — it's how they orient themselves. This also improves SEO. -
6
Language Declaration
Your
Lower lawsuit risk<html>element must include alangattribute:<html lang="en">. Screen readers use this to select the correct pronunciation engine for text-to-speech. Without it, content may be read with the wrong accent or language rules — rendering it unintelligible. If sections of your page are in a different language, they also needlangattributes. -
7
Descriptive Link Text
Links that say "click here," "read more," or "learn more" are inaccessible. Screen reader users navigate by jumping between links — they hear each link's text without surrounding context. "Click here" tells them nothing. Replace vague link text with descriptions: "Download the 2026 ADA compliance guide" or "View our pricing plans." Also check that linked images have descriptive alt text.
Medium lawsuit risk -
8
Captions on All Videos
Any video with spoken audio or important sound needs accurate captions. Auto-generated captions — like YouTube's default speech recognition — do not satisfy this requirement unless manually reviewed and corrected for accuracy. Captions must be synchronized, complete, and properly identify speakers. This requirement also covers audio-only content like podcasts embedded on your site.
Medium lawsuit risk -
9
Logical Heading Hierarchy
Your pages should have one
Lower lawsuit risk<h1>(the main topic), followed by<h2>s for major sections,<h3>s for subsections — in order, without skipping levels. Don't choose heading levels for their visual size (use CSS for that). Screen reader users navigate by headings the way sighted users scan visually — a broken heading hierarchy is disorienting and inaccessible. -
10
Skip Navigation Link
Add a "Skip to main content" link as the first element in your
Lower lawsuit risk<body>. It can be visually hidden but must become visible on keyboard focus. Without it, keyboard-only users must tab through every navigation menu item on every page before reaching the main content. This is one of WCAG's foundational requirements and is explicitly cited in the DOJ's 2024 rulemaking.
Get Your Compliance Score in 30 Seconds
ADAFlags scans your site against all 10 checklist items — plus 50+ additional WCAG 2.1 criteria — and tells you exactly what to fix, ranked by lawsuit risk. No sign-up required.
Scan Your Site Free →How to Test Your Compliance
Manually testing a website for all 10 checklist items takes 3–8 hours depending on site size. Automated scanners handle the measurable violations — color contrast, missing alt text, missing labels, missing page titles — but some issues require manual testing.
Automated Testing (Start Here)
ADAFlags' free scanner runs automated WCAG 2.1 checks against your live site in about 30 seconds. It covers all of the measurable checklist items above and gives you a risk-ranked list of violations. Start here — it finds the majority of issues that trigger complaints.
For additional validation, browser extensions like axe DevTools (free tier) and WAVE by WebAIM can catch issues on individual pages. Neither replaces a full site scan, but they're useful for deep-diving into specific pages.
Manual Testing (Required for Full Compliance)
Automated tools can't evaluate everything. These items require manual review:
- Keyboard navigation: Unplug your mouse and tab through the entire site. Try to complete a form, navigate a dropdown menu, close a modal.
- Screen reader testing: Use NVDA (free, Windows), VoiceOver (built into Mac and iOS), or JAWS to navigate the site with eyes closed. What you hear is what blind users experience.
- Caption accuracy: Watch your videos with captions on and audio off. Are all words transcribed correctly? Are speakers identified?
- Link context: Collect all your links' anchor text. Read them in isolation — does each one describe where it goes?
What ADAFlags Gives You That Others Don't
Most scanners give you a list of violations sorted by WCAG criterion number. That's technically correct and practically useless — it doesn't tell you which violations matter most for lawsuit risk.
ADAFlags ranks every violation by lawsuit risk based on actual complaint data. You see: fix these three things first, and here's why. The scanner tells you what actual plaintiff attorneys look for, in order of how often they cite it. That's the difference between a WCAG audit and a lawsuit prevention tool.
What to Fix First: Prioritizing by Lawsuit Risk
If you're starting from scratch, don't try to fix everything simultaneously. Here's the sequence that reduces your risk fastest:
| Priority | Violation | Why It's First | Typical Fix Time |
|---|---|---|---|
| 1 | Missing alt text | Most commonly cited in demand letters; easy to detect via automated scan | 2–4 hours |
| 2 | Unlabeled forms | Second-most cited; completely blocks screen reader users from converting | 1–3 hours |
| 3 | Low color contrast | Catches the widest range of users (low vision + color blindness); often site-wide | 2–6 hours |
| 4 | Keyboard navigation | Required for motor-impaired users; harder to fix but essential for full compliance | 4–12 hours |
| 5–10 | Remaining checklist items | Lower individual risk, but all contribute to full WCAG 2.1 AA compliance | Varies |
If you're considering an accessibility overlay widget (AccessiBe, AudioEye, UserWay, etc.) to handle compliance — don't. The FTC fined the largest overlay vendor $1 million in early 2025 for false compliance claims. Courts have ruled repeatedly that overlays don't satisfy WCAG requirements. 456 overlay-using sites were sued in H1 2025 alone. Read our full breakdown: Why Accessibility Overlays Don't Work (And Why Courts Agree).
Common Mistakes That Trigger Lawsuits
Beyond the 10 checklist items, these patterns appear repeatedly in ADA demand letters:
PDFs Without Accessible Versions
A PDF menu, price list, or terms document that wasn't designed for accessibility is a common violation. Scanned PDFs (images of text) have no extractable text and are completely inaccessible to screen readers. Either tag your PDFs for accessibility or provide an HTML alternative.
Auto-Playing Media
Video or audio that plays automatically on page load is disorienting and disruptive for screen reader users, whose software suddenly has to compete with audio they didn't request. WCAG requires that auto-playing audio longer than 3 seconds either pause automatically or include a stop control visible immediately on page load.
Inaccessible Third-Party Widgets
Live chat widgets, booking calendars, payment forms, and social media embeds are all your legal responsibility, even if you didn't write them. If a third-party component on your site is inaccessible, you're liable. Review the accessibility documentation for every widget you embed, and test each one with a screen reader.
Timeout Without Warning
If your site times out a session (common in checkout flows and appointment booking), users must be warned at least 20 seconds before the timeout and given the option to extend it. This is frequently missed in e-commerce implementations.
Missing Error Identification in Forms
When a form submission fails validation, the error must be described in text — not just with a red border or icon. "This field is required" must appear as readable text, and the specific field must be identified. Error messages that only convey meaning through color are inaccessible to color-blind users and fail WCAG 1.4.1.
Fixing the top three violations — missing alt text, unlabeled forms, and low color contrast — eliminates roughly 80% of your lawsuit exposure. You don't need a perfect site overnight. You need to fix the violations that plaintiff attorneys actually look for, in the order they look for them. That's what ADAFlags tells you.
Frequently Asked Questions
Does the ADA apply to my small business website?
Yes, if your business serves the public. The ADA applies to "places of public accommodation," and courts have consistently held that websites are covered — particularly for businesses with a nexus to physical locations or that offer goods and services online. The DOJ's 2024 final rule removed any remaining ambiguity: businesses covered by Title III of the ADA must make their websites WCAG 2.1 Level AA compliant.
What's the difference between ADA compliance and WCAG compliance?
WCAG (Web Content Accessibility Guidelines) is the technical standard; ADA is the law. Courts use WCAG 2.1 Level AA as the benchmark for evaluating whether a website meets ADA obligations. Passing WCAG 2.1 AA is the practical path to ADA compliance for websites. The DOJ's 2024 rule made this relationship explicit.
How much does it cost to fix accessibility violations?
The top three violations (alt text, form labels, color contrast) can often be fixed by a competent developer in one to two days. For a well-structured website, full WCAG 2.1 AA compliance typically costs $2,000–$10,000 depending on site complexity. Compare that to the $25,000–$75,000 average settlement cost — fixing it is always cheaper than fighting it.
How often should I check for accessibility issues?
Every time you make significant content changes or add new features. Accessibility regressions are common — a new image uploaded without alt text, a new form added without labels, a design change that drops contrast ratios. Monthly automated scans catch these before attorneys do. ADAFlags' scanner makes this a 30-second task.
Your Next Step
The checklist above tells you what to look for. The fastest way to find which specific violations exist on your site is to run a scan — not manually work through each item by hand.
ADAFlags scans your live site against all 10 checklist criteria and gives you a ranked violation report in about 30 seconds. No sign-up. No credit card. Just your URL and your compliance score.
Scan Your Site Free — Get Your Compliance Score in 30 Seconds
Enter your URL and ADAFlags identifies every violation, ranks them by lawsuit risk, and tells you exactly what to fix first. No account required.
Get Your Free Compliance Score →Related reading: If you've been considering an accessibility overlay as a shortcut, read this first — Why Accessibility Overlays Don't Work (And Why Courts Agree). The FTC's $1 million fine and 456 lawsuits against overlay-using sites tell the full story. If you're actively shopping for an overlay alternative, see our full comparisons: Best AccessiBe Alternatives in 2025 · UserWay Alternatives · AudioEye Alternatives. On Shopify? See the exact Liquid template fixes: Shopify ADA Compliance: Why Your Theme Is the Problem. And for the full picture on lawsuit trends, costs, and how plaintiff attorneys find targets: ADA Website Lawsuits in 2025: What Your Business Needs to Know.