ADA Website Compliance: What Every Small Business Owner Needs to Know in 2026
If you're a small business owner, you may have heard about ADA website lawsuits — and you may be wondering whether your website is at risk. You're not alone. Thousands of businesses receive demand letters each year alleging that their websites aren't accessible to people with disabilities, and most of them had no idea there was a problem.
This guide explains what ADA website compliance actually means, why it matters, and what you can do about it — in plain English, without the legal jargon. Whether you run a dental practice, a restaurant, a retail shop, or any other business with a website, this article is for you.
What Is ADA Website Compliance?
The Americans with Disabilities Act (ADA) was signed into law in 1990 to prevent discrimination against people with disabilities. Title III of the ADA requires that "places of public accommodation" — businesses open to the public — be accessible to everyone, including people with visual, hearing, motor, and cognitive disabilities.
For decades, this applied primarily to physical spaces: wheelchair ramps, braille signage, accessible parking. But as businesses moved online, a critical question emerged: does your website count as a "place of public accommodation"?
The Department of Justice has consistently said yes. In April 2024, the DOJ issued a final rule under Title II (for state and local governments) formally adopting WCAG 2.1 Level AA as the technical standard for web accessibility. While no identical rule has been issued for private businesses under Title III, courts have overwhelmingly applied the same logic: if your business is open to the public, your website needs to be accessible too.
WCAG 2.1 — the Web Content Accessibility Guidelines — is the internationally recognized standard for making web content accessible. Level AA is the benchmark that courts, the DOJ, and settlement agreements consistently reference. It covers things like providing text alternatives for images, ensuring sufficient color contrast, making forms usable with a keyboard, and providing captions for video content.
The Numbers: ADA Website Lawsuits Are Rising
ADA website accessibility lawsuits are not a theoretical risk. They are a growing and well-documented trend, and the numbers tell a clear story.
According to UsableNet, which has tracked ADA digital accessibility lawsuits since 2018, there were over 4,600 federal lawsuits filed in 2025 alone — continuing a trend of year-over-year growth. This figure does not include state-level lawsuits or pre-litigation demand letters, which are far more common and often go unreported.
The WebAIM Million project, which annually audits the homepages of the top one million websites, found that 96% had detectable WCAG failures in their most recent report. The most common issues — missing alt text, low color contrast, and empty links — are the same ones that trigger lawsuits.
Perhaps most concerning for small business owners: the majority of lawsuits target small to mid-size businesses, not Fortune 500 companies. Plaintiffs' attorneys often focus on businesses that are too small to have in-house legal counsel but large enough to settle quickly — typically in the $3,000 to $25,000 range, plus attorney's fees and the cost of remediation.
Important context: Not every demand letter leads to a lawsuit, and not every lawsuit results in a large payout. But even the cheapest outcome — responding to a demand letter, hiring an attorney, and remediating your site — typically costs more than proactive compliance would have. Prevention is always less expensive than reaction.
What Makes a Website Non-Compliant?
Most accessibility issues are not obvious to sighted, able-bodied users. Your website might look great and work perfectly for you — but be completely unusable for someone navigating with a screen reader, a keyboard, or assistive technology. Here are the most common problems:
-
Missing alt text on images. Screen readers can't describe an image without alt text. Every meaningful image needs a text alternative.
-
Poor color contrast. Text that blends into the background is hard to read for people with low vision or color blindness.
-
Forms without labels. If your contact form fields aren't properly labeled, screen readers can't tell users what information to enter.
-
No keyboard navigation. Many users can't use a mouse. If your menus, buttons, and links don't work with the Tab and Enter keys, those users are locked out.
-
Missing skip links. Without a "skip to main content" link, keyboard and screen reader users have to tab through your entire header and navigation on every page.
-
Auto-playing media without controls. Audio or video that plays automatically — without pause, stop, or volume controls — creates a disorienting experience for many users.
These issues are extremely common. Many website builders and templates ship with accessibility violations built in, and most web developers — unless they've specifically studied accessibility — don't test for them.
How to Check Your Website
The good news: you don't need to be a developer to get a basic understanding of your website's accessibility. There are three approaches, ranging from free to comprehensive.
1. Free Automated Scan
The fastest way to get started. ADA Audit Report offers free automated scans that test your website against WCAG 2.1 Level AA criteria and return a summary of violations found. It takes about 30 seconds and gives you a high-level picture of where you stand.
2. Browser Extensions
For a do-it-yourself approach, install WAVE (by WebAIM) or axe DevTools (by Deque) in your browser. Both are free and will highlight accessibility issues directly on any page you visit. They're especially useful for reviewing individual pages in detail.
3. Professional Audit
Automated tools can identify roughly 30-40% of all accessibility issues — things like missing alt text, contrast failures, and unlabeled form fields. The remaining 60-70% require manual testing: Can a real user navigate your site with only a keyboard? Does the reading order make sense? Are complex interactive elements (like date pickers or modal dialogs) usable with assistive technology?
A professional audit combines automated scanning with manual testing and typically includes a prioritized remediation plan. This is the most thorough option and is especially important for businesses in higher-risk industries (e-commerce, healthcare, hospitality, financial services).
Why automated tools matter even though they don't catch everything: They reliably catch the violations that are most commonly cited in lawsuits — missing alt text, color contrast failures, empty links, and unlabeled form fields. An automated scan is a great first step, and for many small businesses, fixing what the scan finds will significantly reduce legal risk.
How to Fix Common Issues
If your scan reveals issues — and it almost certainly will — here are the most impactful fixes you can make. Most of these are straightforward for any web developer, and some you can do yourself.
Add alt text to all images
Every <img> tag should have an alt attribute that describes the image. For decorative images that don't convey information, use an empty alt attribute: alt="". For product photos, team headshots, or infographics, write a brief, accurate description. "Photo of Dr. Smith in the exam room" is better than "image1.jpg" or nothing at all.
Ensure 4.5:1 color contrast ratio
WCAG requires a minimum contrast ratio of 4.5:1 for normal text and 3:1 for large text (18px bold or 24px regular). Use a free tool like the WebAIM Contrast Checker to test your color combinations. Light gray text on a white background is the most common failure — and one of the easiest to fix.
Label all form fields
Every input field in your forms needs a visible <label> element associated with it using the for attribute. Placeholder text alone is not sufficient — it disappears when the user starts typing, and many screen readers don't announce it. This applies to contact forms, search fields, email signup boxes, and any other input on your site.
Test keyboard navigation
Put your mouse aside and try navigating your website using only the Tab key (to move forward), Shift+Tab (to move backward), and Enter (to activate). Can you reach every link, button, and form field? Can you see where the keyboard focus is? Can you open and close menus? If not, those elements need to be fixed.
Add skip navigation links
Add a "Skip to main content" link as the first focusable element on every page. It should be visually hidden by default but become visible when focused (when a keyboard user tabs to it). This lets users bypass your header and navigation to get straight to the page content. You can see an example on this very page — try pressing Tab when the page loads.
Use semantic HTML
Use proper HTML elements for their intended purpose: <h1> through <h6> for headings (in order, without skipping levels), <nav> for navigation, <main> for main content, <button> for buttons (not styled <div> elements), and <ul>/<ol> for lists. Semantic HTML gives assistive technology the structural information it needs to help users understand and navigate your page.
What If You Receive a Demand Letter?
If a demand letter shows up — from a plaintiff's attorney alleging your website violates the ADA — here's what to do:
- Don't panic. A demand letter is not a lawsuit. It's typically an opening move to negotiate a settlement. You have time to respond thoughtfully, but you do need to respond.
- Don't ignore it. Ignoring a demand letter can lead to an actual lawsuit being filed, which is significantly more expensive to resolve. Even if you believe the claim is unfounded, a lack of response is almost always the worst option.
- Consult an ADA attorney. Find a lawyer who specializes in ADA defense — not just any business attorney. They can evaluate the claim, advise on your exposure, and negotiate on your behalf. Many offer free initial consultations.
- Start fixing your website immediately. Courts look favorably on businesses that demonstrate good faith efforts to achieve compliance. Begin remediation right away and document everything — what you found, what you fixed, and when. This creates a strong record if the case goes further.
- Understand that proactive compliance is always cheaper. The cost of fixing most accessibility issues on a small business website ranges from a few hundred to a few thousand dollars. A demand letter response with attorney's fees starts at $3,000-$5,000. A lawsuit settlement can run $10,000-$25,000 or more, plus your own legal fees. The math always favors prevention.
About ADA Audit Report
We built ADA Audit Report to help small businesses get ahead of compliance issues — not after a demand letter arrives, but before. Our scans use axe-core, the same open-source accessibility testing engine trusted by Microsoft, Google, and U.S. government agencies. We identify issues on your website and give you a detailed report with exactly what's wrong and how to fix it — mapped to specific WCAG 2.1 success criteria, with severity ratings and step-by-step remediation guidance.
We're a technology company based in Los Angeles, California — not a law firm. We don't offer legal advice, and we'll never send you a threatening letter. We believe that most businesses want to do the right thing; they just need someone to show them where to start. That's what we do.
Want to check your website?
Run a free scan and see where your site stands on ADA compliance. It takes 30 seconds.
Run a Free Scan