What Is ADA Compliance?
Plain-English guide to what the Americans with Disabilities Act actually requires from your website, who it covers, and how to check if you're at risk.
How it works
ADA compliance means your website works for people with disabilities. We break down the law, the standards, and who it covers.
Paste any URL. We check it against WCAG 2.1 Level AA, the standard courts reference when ruling on ADA web cases.
Every issue comes with the exact WCAG rule, the affected HTML, and a copy-paste fix. Close the gaps before a demand letter arrives.
ADA compliance in one paragraph
ADA compliance means following the Americans with Disabilities Act, a 1990 federal law that bans discrimination against people with disabilities. For websites, it means someone using a screen reader, keyboard, voice control, or screen magnifier can accomplish the same things on your site that a sighted mouse user can. When courts ask "is this website ADA compliant?" they check it against WCAG 2.1 Level AA, a technical standard published by the World Wide Web Consortium. If your site falls short, the business is exposed to private lawsuits and DOJ action.
What does ADA compliance mean?
The ADA prohibits places of public accommodation from discriminating against people with disabilities. Originally that meant physical spaces: restaurants, stores, hotels, doctors' offices. Courts have extended the definition to digital spaces because modern businesses serve customers through websites and apps.
For a website, ADA compliance means three things in practice. First, someone using assistive technology (a screen reader like NVDA or VoiceOver, a keyboard-only setup, voice control, or a screen magnifier) can perceive all content on the page. Second, they can operate all interactive elements: menus, forms, buttons, modals, and checkout flows. Third, the experience makes sense, with consistent navigation, clear labels, and no keyboard traps.
Is ADA compliance mandatory?
For businesses that serve the public, yes. Title III of the ADA has applied to businesses since 1990. Courts have applied it to websites consistently since the early 2010s. In April 2024, the Department of Justice issued a final rule requiring state and local government websites to meet WCAG 2.1 Level AA by 2026 or 2027 depending on entity size. That rule does not directly cover private businesses, but courts routinely reference the same WCAG 2.1 AA standard when deciding private-sector cases.
There is no small business exemption. There is no revenue threshold. There is no "website is too new" grace period. If your business serves the public, you are on the hook the moment your site goes live.
Who does ADA compliance apply to?
ADA Title III covers any business that qualifies as a place of public accommodation. That is a broad category. It includes restaurants, retail stores, hotels, banks, doctors' offices, law firms, tutoring centers, gyms, theaters, museums, and just about any other business that sells goods or services to the general public. Online-only businesses are covered too, even without a physical storefront.
Non-profits with public-facing services are generally covered. Government agencies are covered under Title II, which is subject to the April 2024 DOJ rule. Purely private clubs, certain religious organizations, and personal-use websites with no commercial activity are generally outside the scope.
ADA versus WCAG: the relationship
The ADA is the law. WCAG is the technical standard used to measure whether the law is being followed. That distinction matters.
The ADA itself does not include line-by-line technical requirements for websites. It does not say "images must have alt text" or "color contrast must be 4.5:1." Instead, courts look to the Web Content Accessibility Guidelines published by the W3C. WCAG 2.1 Level AA has become the de facto benchmark. If your website meets WCAG 2.1 AA, you have a strong argument that you meet the ADA's accessibility requirements. If it falls short, a plaintiff's attorney has something specific to cite.
WCAG 2.2 was published in October 2023 and adds nine new success criteria on top of WCAG 2.1. Most plaintiff filings still reference WCAG 2.1 AA because that is what the DOJ rule adopts. Some early cases are starting to cite WCAG 2.2, so the bar will continue to rise.
The four principles of WCAG
WCAG organizes its 50 success criteria under four principles, often remembered by the acronym POUR.
- Perceivable. Users must be able to sense the content. Images need alt text. Videos need captions. Color contrast must be strong enough for low-vision users.
- Operable. Users must be able to interact with all functionality. Every feature must work with keyboard alone. There must be no time limits users cannot extend or dismiss.
- Understandable. Content and controls must be predictable. Form errors must explain the problem. Page language must be declared. Navigation must be consistent across pages.
- Robust. Content must work with current and future assistive technology. Valid, semantic HTML. Proper use of ARIA when native elements are not enough.
What happens if you're not compliant
The ADA is enforceable in two ways. The DOJ can investigate and bring enforcement actions. In practice this is rare for private websites. The much more common path is private litigation.
Plaintiff law firms scan websites with automated tools. When they find violations, they identify a plaintiff with a relevant disability who tried to use the site, and they send a demand letter or file a lawsuit. 3,948 such website lawsuits were filed in federal court in 2025, up 24% from the year before. Demand letters (which don't show up in court filing statistics) number in the tens of thousands. Settlements typically run $5,000 to $25,000 for small businesses and climb from there.
State laws stack on top of the ADA. California's Unruh Act provides minimum statutory damages of $4,000 per violation per visit. New York's Human Rights Law allows damages beyond what the ADA provides. Most plaintiff firms file in New York or California because the math works better for them.
How to check if your website is ADA compliant
Start with an automated scan. A good scan checks for the issues most commonly cited in demand letters: missing alt text, insufficient color contrast, unlabeled form fields, empty links and buttons, missing document language, and broken heading hierarchy. Automated tools catch about 30 to 40% of WCAG 2.1 AA criteria, but that 30 to 40% overlaps heavily with what plaintiff attorneys cite. Run a free scan on your site and see what comes up.
After the automated pass, do three manual checks. First, unplug your mouse. Navigate the entire site using only the keyboard (Tab, Shift+Tab, Enter, Space, arrow keys). Can you complete a checkout? Can you use the menu? Second, turn on your operating system's screen reader (VoiceOver on Mac, Narrator on Windows, or install NVDA free). Listen to a product page. Does it make sense? Third, zoom your browser to 200%. Does the layout break?
If all three pass, you are in good shape. If any fail, fix the gaps or hire an accessibility consultant.
How to fix common ADA compliance issues
Most demand-letter-grade issues are one-line fixes. Here's how the big five map to specific HTML changes.
Missing alt text on images
Every <img> needs an alt attribute. Describe the
image in context. A product photo becomes alt="Red leather tote bag with gold hardware".
A decorative image becomes alt="" (empty alt tells screen
readers to skip it, which is correct).
Unlabeled form fields
Every <input> needs either a visible <label> associated with it, an aria-label, or an aria-labelledby attribute. Placeholder text does not count. Screen readers may not read
it, and it disappears when the user starts typing.
Insufficient color contrast
Body text needs a contrast ratio of at least 4.5:1 against its background. Large text (24px+ or 18.66px+ bold) needs 3:1. Non-text UI like buttons and form borders needs 3:1. Use any contrast checker to verify.
Empty links and buttons
Icon-only buttons and links need accessible names. Add aria-label="Close" to an X button. Add aria-label="adaproof home" to a logo link. A button with only an SVG and no text is unusable for a
screen reader without a label.
Missing document language
The <html> tag at the top of every page needs a lang attribute. Usually <html lang="en">.
This tells screen readers which pronunciation rules to use.
Ongoing compliance, not a one-time project
Fixing your site once is not enough. Every time you publish a blog post, add a product, update a page, or install a plugin, you can introduce new violations. A content editor uploads an image without alt text. A theme update breaks contrast. A new widget has keyboard traps. These are how businesses get sued again after they already fixed everything once.
Continuous monitoring catches regressions before a plaintiff's attorney does. Weekly crawls, alerts on new violations, and a running history of what changed make ADA compliance a maintenance task rather than a crisis.
Ready to see where your site stands? Free ADA compliance scan, 30 seconds, no account.
Run a free scanFrequently asked questions
What is ADA compliance in simple terms?
ADA compliance means your business, including your website, works for people with disabilities. A blind user with a screen reader should be able to buy from you. A keyboard-only user should be able to book an appointment. Someone with low vision should be able to read your text without squinting. If any of those break, your site is not compliant.
Does ADA compliance apply to my small business website?
If your business is open to the public, yes. Title III has no small business exemption, no revenue threshold, and no minimum employee count. A solo practitioner's five-page website is just as covered as a Fortune 500 e-commerce site. See our small business guide for specifics.
Is my website automatically ADA compliant if I use Shopify/WordPress/Wix?
No. Platforms give you a foundation, but compliance depends on your theme, your content, your plugins, and your customizations. Themes with poor color contrast, product images without alt text, embedded videos without captions, and inaccessible third-party widgets all cause failures. See our guides for Shopify and WordPress specifically.
What's the cost of not being ADA compliant?
Demand letter settlements run $5,000 to $25,000 for small businesses. Federal cases climb into the $25,000 to $150,000 range before legal fees. California adds $4,000 per violation per visit under the Unruh Act. Most businesses pay between $10,000 and $50,000 total when you add settlement, legal fees, and remediation. See our lawsuit risk page for more detail.
How do I start with ADA compliance?
Three steps. Run an automated scan to catch the common violations. Fix what you can yourself (alt text, labels, contrast, language). For anything keyboard- or screen-reader related that feels over your head, hire a consultant for a manual audit. Then set up monitoring so regressions don't sneak back in.
Is there an official ADA compliance certification?
No. There is no government-issued ADA compliance certificate. Any vendor offering one is selling a marketing document, not a legal shield. The closest thing is a WCAG 2.1 AA conformance report written by an accessibility professional after a manual audit, which documents what was tested and what passed. That has evidentiary value in court but isn't a certification.
Related reading: ADA compliance checker · ADA website compliance · WCAG compliance checker · ADA compliance audit · ADA compliance consultant · ADA lawsuit risk · Small business · E-commerce
Free ADA compliance scan. 30 seconds. No signup.
Check my website