The Americans with Disabilities Act (ADA) has applied to commercial websites since at least 2018, and after the DOJ’s Title II rule went into full effect on April 24, 2026, the federal benchmark for digital accessibility is unambiguous: WCAG 2.1 Level AA. Every US business that serves the public should treat that standard as the floor, not the ceiling.
Two things have changed in the last 18 months. First, the volume of ADA digital lawsuits has exploded — 5,100+ federal cases in 2025, up 37% YoY, with 67% targeting businesses under $25M in revenue. Second, AI tools have collapsed the barrier to filing: pro se plaintiffs (filing without attorneys) grew 40% in 2025 because anyone can draft a credible ADA complaint in minutes. The math has shifted decisively toward “fix it now.”
This guide gives you the full ADA website compliance checklist, the six violations behind most lawsuits, plain-English answers to the questions everyone asks, and an action plan whether you have a budget of $0 or $15,000.
Quick Print-Ready Checklist (If You Only Have 10 Minutes)
Copy this list into a doc, print it, or use your browser’s Print → Save as PDF to keep it offline. These are the six fixes behind 96% of ADA website lawsuits — start here regardless of site size.
| # | Check | Tool | Time to fix |
|---|---|---|---|
| 1 | Every meaningful image has descriptive alt text | axe DevTools, WAVE | 1–2 hr |
| 2 | Body text contrast is at least 4.5:1 against background | WebAIM Contrast Checker | 30 min |
| 3 | Every form field has a <label> element programmatically tied via for/id | View source / axe | 1 hr |
| 4 | All links and buttons have visible text or aria-label (no empty icon-only ones) | axe DevTools | 1 hr |
| 5 | <html lang="en"> (or your primary language) is set on every page | View source | 5 min |
| 6 | Visible :focus outline on every interactive element when keyboarding through the page | Tab through the page | 30 min |
A focused team can knock these out for a 10–25 page site in a single afternoon. If you do nothing else from this checklist, do these six.
One Checklist, Many Search Queries
Searchers arrive here looking for slightly different things — the ADA compliance website checklist, the website ADA compliance checklist, an ADA compliant website checklist, ADA compliance for websites checklist, the ADA web compliance checklist, an ADA website checklist, or more general phrasing like ADA compliance website, ada accessible website requirements, or a generic accessibility compliance checklist. They are all asking the same thing in different words: what does it take to make a website meet ADA Title III, which the courts measure against WCAG 2.1 Level AA?
This guide is structured to answer that question completely. If you came here researching ADA compliant website requirements or the basic requirements for ADA Title III digital accessibility, the 30-step checklist below is the answer, and the FAQ at the bottom covers the legal and procedural questions everyone asks.
Why This ADA Compliance Checklist Matters in 2026
ADA Title III prohibits discrimination against people with disabilities in places of public accommodation. Federal courts have ruled consistently — across the 1st, 2nd, 3rd, 6th, 9th, and 11th Circuits — that commercial websites qualify. The DOJ’s April 2026 Title II rule formalised WCAG 2.1 Level AA as the standard for state and local governments, and plaintiff attorneys now cite that rule directly when arguing private-sector cases.
The practical consequences:
- New York filed 1,021 ADA digital lawsuits in 2025 (33% of all federal filings).
- Florida filed 487 (nearly doubled YoY).
- California filed 380.
- Illinois filed 237 — a 746% YoY increase as plaintiff firms expand into new jurisdictions.
If your business has any US-facing presence, ADA compliance is no longer optional. For the broader context on how ADA and WCAG interact across US and Canadian jurisdictions, see our companion guide on ADA & WCAG compliance for US and Canada in 2026.
The 6 Most Common ADA Website Violations
The WebAIM Million 2025 study analysed the top 1 million US websites. These are the violations they found on the homepage of the average site — and they account for roughly 96% of real-world ADA lawsuits.
- Low contrast text — 79.1% of homepages fail. Fix by checking every text/background pair against 4.5:1 (normal) or 3:1 (large text, 18pt+/14pt+ bold).
- Missing alt text on images — 55.5% fail. Fix by adding descriptive alt to every meaningful image; empty
alt=""only for decorative ones. - Missing form input labels — 48.2% fail. Fix with
<label for="email">Email</label><input id="email" type="email">oraria-label="Email". - Empty links — 44.6% fail. Usually icon links or images-as-links with no accessible name. Add visible text or
aria-label. - Missing document language — 37.1% fail. Fix by setting
<html lang="en">(or your language code) in every page’s HTML. - Empty buttons — 26.3% fail. Icon-only buttons (hamburger, close, search) need
aria-label. Plain<button>with no text content is invisible to screen readers.
These six are the lowest-hanging fruit and the highest-impact fixes. If you have an existing site, run a free website audit to see which of them your site has — and how many of each.
The Full 30-Step ADA Compliance Checklist
This is the complete WCAG 2.1 Level AA checklist, expanded to include the two most-relevant WCAG 2.2 additions (target size and drag alternatives), organised under the four WCAG principles: Perceivable, Operable, Understandable, Robust.
Perceivable — Information must be presentable in ways users can perceive
1. Add alt text to all meaningful images. Every image that conveys information needs a text alternative describing what it shows. Decorative images should have empty alt attributes (alt="") so screen readers skip them.
2. Provide transcripts for audio content. Any podcast, audio interview, or audio-only content needs a full text transcript.
3. Provide captions for all video content. All videos must have closed captions, including live video. Captions must be accurate and synchronised.
4. Provide audio descriptions for video content where necessary. If visual information in a video is not conveyed in the audio track, an audio description track is required.
5. Ensure sufficient colour contrast. Text must have a contrast ratio of at least 4.5:1 against its background (normal text) or 3:1 (large text). Use a contrast checker tool to verify.
6. Do not use colour as the only means of conveying information. Form error states, required fields, and status indicators must use text or iconography in addition to colour, since colour-blind users cannot distinguish red from green.
7. Ensure text can be resized to 200% without losing content or functionality. When a user zooms text to 200%, the page should remain fully usable — no overlapping text, no hidden content.
8. Avoid content that flashes more than 3 times per second. Flashing content can trigger seizures in people with photosensitive epilepsy.
9. Provide text alternatives for non-text content used as controls. Icons used as buttons (search icon, close icon, menu icon) must have accessible names via aria-label or visible text.
Operable — Interface components must be operable
10. Ensure all functionality is accessible by keyboard. Every interactive element — menus, forms, modals, carousels, tabs — must be operable using only a keyboard (Tab, Enter, Space, arrow keys).
11. Provide a visible focus indicator. When a user navigates via keyboard, the focused element must be clearly visible. Removing the default focus outline without providing an equally visible replacement is a common accessibility failure.
12. Provide skip navigation links. Add a “Skip to main content” link at the top of every page, allowing keyboard users and screen reader users to bypass the navigation and jump directly to the page content.
13. Ensure no time limits cause accessibility barriers. If your site has session timeouts or auto-refreshing content, users must be warned and given the option to extend time limits.
14. Provide users control over moving or auto-updating content. Auto-playing carousels, scrolling tickers, and animated banners must have pause, stop, or hide controls.
15. Ensure page titles are descriptive and unique. Every page must have a unique, descriptive <title> element (e.g., “Contact Us | Company Name”) so screen reader users and tab users know where they are.
16. Provide meaningful link text. Links must describe their destination or purpose. “Click here” and “Read more” are inaccessible. Use “Read our ADA compliance guide” or “Download the 2026 pricing PDF” instead.
Understandable — Information and operation of the UI must be understandable
17. Set the language attribute on the HTML element. The lang attribute on your <html> tag tells screen readers what language to use. All pages must have this set correctly (e.g., lang="en").
18. Identify language changes within the page. If a page contains content in multiple languages, use lang attributes on those specific elements.
19. Ensure forms have visible, properly associated labels. Every form input must have a visible label that is programmatically associated (using for/id or aria-labelledby). Placeholder text is not sufficient as a label.
20. Provide helpful error messages for form validation. Error messages must identify the field with the error and explain how to correct it. “This field is required” is acceptable; a red border alone is not.
21. Ensure consistent navigation across pages. Navigation menus that appear on multiple pages must appear in the same location and same order on each page.
Robust — Content must be robust enough to be interpreted by assistive technologies
22. Use valid, semantic HTML. Headings (h1–h6), lists (ul/ol/li), tables (with proper headers), and landmark roles (nav, main, header, footer) allow screen readers to understand and navigate your content structure. This is what searches for “html ada compliance” are really asking about — clean, semantic HTML is the foundation.
23. Ensure ARIA attributes are used correctly. ARIA (Accessible Rich Internet Applications) attributes like aria-label, aria-expanded, and role must be used accurately. Incorrect ARIA can make a site less accessible than no ARIA at all.
24. Ensure all interactive components have accessible names. Buttons, links, form controls, and custom widgets must all have names that describe their purpose, either through visible text or ARIA attributes.
25. Test with real screen readers and assistive technology. Automated tools catch approximately 30–40% of accessibility issues. Real testing with NVDA (Windows), JAWS (Windows), VoiceOver (Mac/iOS), or TalkBack (Android) is essential to find interaction-level issues.
WCAG 2.2 additions — newer criteria worth meeting now
26. Make target sizes at least 24×24 CSS pixels (44×44 is the accessibility gold standard). Tiny buttons and links exclude users with motor impairments.
27. Provide a non-drag alternative for any drag action. If your interface uses drag-and-drop (file uploads, list reordering, kanban boards), supply a keyboard-accessible alternative — usually a click-to-pick-up / click-to-drop pattern.
28. Eliminate horizontal scroll on mobile. Set max-width: 100% on images and tables; use responsive units. Horizontal scroll is one of the most common mobile accessibility failures.
29. Make error states perceivable beyond colour. Form errors must be announced via aria-live, identified with text + icon (not just a red border), and described in plain language.
30. Audit and document — produce a VPAT/ACR. After remediation, produce a VPAT 2.5 / ACR (Accessibility Conformance Report). Courts treat documented remediation as a mitigating factor in settlement, and B2B sales and government contracts increasingly require it.
How Much Does ADA Website Compliance Cost?
The honest answer: ADA compliance is one of the cheapest forms of legal insurance a US business can buy. Here are typical 2026 ranges from accessibility-focused agencies (eLan Technology pricing in brackets):
| Scenario | Typical range | eLan pricing |
|---|---|---|
| WCAG 2.1 AA audit of a 5–25 page site | $1,000–$3,000 | $1,500 |
| Audit + full remediation (existing site) | $3,000–$15,000 | $3,000–$8,000 |
| ADA-compliant new build from scratch | $3,000–$25,000 | $3,000–$12,000 |
| VPAT 2.5 / ACR documentation | $500–$2,500 | Included |
| Ongoing monitoring (per month) | $200–$800 | From $399/mo |
Compare those numbers to the cost of doing nothing:
- Average demand-letter settlement: $5,000 (with active remediation plan)
- Average out-of-court ADA settlement: $30,000
- Average judgment: $85,000
- Average class action settlement: $400,000
- Defence legal fees alone: $30,000–$175,000
A $5,000 investment in remediation today prevents a $30,000–$400,000 legal nightmare tomorrow. And unlike a settlement, accessible code keeps paying you back: better SEO, larger addressable audience, fewer support tickets.
Tools for Auditing Your ADA Compliance Checklist
No automated tool is a complete solution — they catch 30–40% of issues. Combine these with manual keyboard testing and at least one screen reader before you ship.
- axe DevTools — browser extension for automated WCAG testing. The de facto standard for engineers.
- WAVE — visual accessibility evaluation tool from WebAIM. Great for non-developers.
- Lighthouse — built into Chrome DevTools, includes an accessibility audit.
- Pa11y — command-line tool for accessibility testing in CI/CD pipelines.
- WebAIM Contrast Checker — fastest way to verify text/background contrast ratios.
- Screen readers — NVDA (free, Windows), JAWS (paid, Windows, market leader for enterprise), VoiceOver (built into macOS/iOS), TalkBack (built into Android).
- Stark — Figma plugin that catches contrast and accessibility issues during design, before code is written.
For a deeper explanation of how these tools fit into a real audit workflow, see our WCAG 2.1 AA explained for business owners guide.
What to Do If Your Website Fails This Checklist
If you have not received a demand letter, work through these steps in order:
- Run a free or paid audit to identify every violation on your site, ranked by severity.
- Fix the top 6 critical violations first (the ones behind 96% of lawsuits).
- Schedule remaining medium and low-priority fixes across the next 1–2 sprints.
- Add an accessibility statement to your site documenting your conformance level and the remediation timeline.
- Set up ongoing monitoring so new code does not regress what you have fixed.
If you have received a demand letter or court summons, this becomes an emergency. Read our guide on emergency ADA website remediation and contact an accessibility specialist immediately — most demand letters settle for $5,000 with active remediation, versus $30,000–$85,000 without.
For US and Canadian businesses building or rebuilding a site, our ADA-compliant web design service bundles audit, remediation, and VPAT documentation into a single fixed-price engagement.
Frequently Asked Questions
What is an ADA website compliance checklist? An ADA website compliance checklist is the practical set of fixes that brings a website in line with WCAG 2.1 Level AA — the standard US federal courts use to interpret ADA Title III for digital accessibility. The 30-step list above is mapped directly to the WCAG 2.1 AA success criteria.
What is required for a website to be ADA compliant in 2026? WCAG 2.1 Level AA conformance, in practice. That means: every image has alt text, every form has labels, every interactive element works with keyboard alone, contrast is at least 4.5:1, focus is always visible, videos have captions, audio has transcripts, and the underlying HTML is semantic.
Is there a free ADA compliance kit or checklist I can download? The checklist on this page is the kit — open in your browser, then Print → Save as PDF for an offline copy. Paid “ADA compliance kits” sold for $200–$500 typically wrap the same WCAG 2.1 AA criteria in a branded template.
Does an accessibility widget make my site ADA compliant? No. 22.64% of ADA lawsuits in 2025 specifically targeted sites with widgets installed. Overlays cannot fix underlying code-level violations. Only code-level remediation provides legal protection.
How much does ADA website compliance cost? $1,500 for an audit, $3,000–$8,000 for audit + remediation, $3,000–$12,000 for a new ADA-compliant build. Compare to $30K–$400K for settlements and judgments — compliance is dramatically cheaper than litigation.
For more questions on legal scope, deadlines, and the DOJ’s April 2026 Title II rule, see the FAQ section on our ADA-compliant web design service page.
Accessibility Pays — Beyond Compliance
Compliance is the floor, not the ceiling. Accessible websites also deliver:
- Better SEO — semantic HTML, alt text, and descriptive link text help search engines crawl and rank your content
- Larger addressable audience — approximately 1 in 4 US adults lives with a disability
- Better mobile usability — accessibility patterns (large targets, clear focus, keyboard-equivalent paths) make every interaction faster
- Stronger brand reputation — accessibility statements and visible commitments build trust
- Lower support costs — accessible forms have higher completion rates and fewer error tickets
The web should work for everyone. This 30-step ADA compliance checklist is your starting point. The next step is doing the work — or requesting an audit so you have a prioritised plan to do it from.