Your medical or dental practice website is probably violating the Americans with Disabilities Act right now. Medical website ADA compliance is not a niche legal concern for large hospital systems. It is a real liability that has hit solo practitioners, two-dentist offices, and regional specialty clinics with five-figure demand letters and federal lawsuits. Most practice owners find out about the problem when a lawyer's letter arrives.
This is not a scare piece. It is a practical explanation of what the law actually requires, where practice websites fail most often, and what a properly built site looks like. Read it before you get the letter.
The Lawsuit Surge Nobody in Healthcare Is Talking About
ADA web accessibility lawsuits have climbed every year since 2018. In 2023, plaintiffs filed more than 4,000 federal ADA Title III web cases in the United States. Healthcare is one of the top three most-targeted industries, alongside retail and food service.
The reason healthcare gets hit hard is straightforward. People with disabilities need medical care at the same rate as everyone else, often more. A blind patient who cannot navigate your booking system, a deaf patient who cannot access your video content, a motor-impaired patient who cannot use your contact form -- these are real access failures. Courts and the Department of Justice have consistently treated them as such.
The DOJ clarified in March 2022 that websites operated by businesses open to the public are covered under Title III of the ADA. In April 2024, the DOJ published a final rule requiring web content to meet WCAG 2.1 Level AA. The rule applies to state and local government entities under Title II, and it has reinforced the legal standard courts have been applying to private businesses for years.
"From 2017 to 2023, ADA Title III web accessibility lawsuits increased by more than 300%. Healthcare and medical services accounted for approximately 12% of all cases filed in 2023, making it the second most-targeted industry after retail." -- UsableNet 2023 ADA Web Accessibility Report
Serial plaintiffs and their law firms use automated scanning tools to identify non-compliant sites at scale. They send demand letters in bulk. Settlement costs typically run $15,000 to $75,000 when you factor in legal fees, remediation costs, and the settlement itself. Some practices pay more. None of them planned for it.
What WCAG Compliance in Healthcare Actually Means
WCAG stands for Web Content Accessibility Guidelines. It is a technical standard published by the World Wide Web Consortium. Level AA is the legal benchmark. The guidelines are built around four principles: content must be perceivable, operable, understandable, and robust. Every requirement flows from one of those four.
In plain language, here is what that means for a medical or dental practice site.
Perceivable means every user can receive your content regardless of how they access it. Screen reader users need text alternatives for images. Deaf users need captions on video. Users with low vision need sufficient color contrast between text and background. If any of your content is only communicated through color, shape, or visual position alone, it fails.
Operable means every function on your site can be completed without a mouse. Keyboard-only users, switch device users, and people with motor impairments navigate with Tab, Enter, and arrow keys. If your appointment form, your phone number click-to-call, or your insurance verification tool cannot be reached and activated by keyboard alone, it is a violation.
Understandable means your site behaves predictably and your forms give useful error messages. A booking form that submits and returns a blank page, or flags an error without explaining what the error is, fails this standard.
Robust means your code is clean enough that assistive technologies can parse it. This is a build quality issue. Sloppy HTML, missing landmark roles, and improperly nested elements all create problems for screen readers even when the page looks fine visually.
The Most Common Violations Found on Medical and Dental Practice Websites
These are not edge cases. Every single one of these shows up regularly on practice sites, including sites built by agencies that should know better.
Missing or Broken Image Alt Text
Every image on your site needs a text description that conveys the same information the image conveys. A photo of your dental office exterior needs alt text. Your headshot needs alt text. Your before-and-after treatment photos need alt text. Decorative images that carry no information should have empty alt attributes so screen readers skip them.
What practice sites actually have: alt text fields left blank, or filled with the image filename ("IMG_4421.jpg"), or stuffed with keywords ("best dentist Charlotte NC dental implants cosmetic dentist"). All three are violations. The first two fail accessibility. The third fails accessibility and is also an SEO penalty waiting to happen.
Insufficient Color Contrast
WCAG 2.1 AA requires a contrast ratio of at least 4.5:1 for normal text and 3:1 for large text (18pt or 14pt bold). A lot of practice websites use light gray text on white backgrounds, or white text over a washed-out photo. These look fine to users with normal vision. For users with low vision or color blindness, they are unreadable.
Run your site through a contrast checker. The WebAIM Contrast Checker is free. If your body copy fails 4.5:1, you have a violation that is easy for a plaintiff's scanner to document and easy for a court to understand.
Inaccessible Booking and Contact Forms
This is where healthcare-specific ADA website lawsuits get the most traction. If a patient cannot book an appointment because your form is inaccessible, the access failure is directly tied to your core service. Courts take that seriously.
Common form failures: input fields with no associated labels (the placeholder text disappears when you start typing, leaving screen reader users with no context), required field indicators that are only communicated through a red asterisk with no text explanation, error messages that appear visually but are never announced to assistive technology, and form submission buttons that are not keyboard-focusable.
Third-party booking widgets are a particular problem. Zocdoc, Acuity, and similar platforms have improved over time, but embedded versions often inherit accessibility problems from the iframe implementation. You are responsible for the full user experience on your domain, including embedded tools.
No Skip Navigation
Keyboard users have to Tab through every link in your navigation on every page before they reach the main content. If your nav has 12 links, that is 12 Tab presses just to get to the content. WCAG requires a "skip to main content" link as the first focusable element on the page. It can be visually hidden and only appear on focus. Most practice sites do not have it.
Videos Without Captions
If you have a welcome video, a procedure explainer, or a patient testimonial video on your site, it needs accurate captions. Auto-generated YouTube captions do not meet the standard for medical content. They misread terminology constantly. You need human-reviewed captions, or at minimum a verbatim transcript available on the same page.
Why Overlays and Plugins Do Not Solve This
You have probably seen ads for accessibility overlay tools. AccessiBe, UserWay, AudioEye. They promise ADA compliance through a single script or plugin. They are popular because they are cheap and they feel like a solution.
They are not a solution. They are a documented liability.
Over 700 accessibility professionals signed an open letter in 2021 stating that overlay tools do not make websites accessible and often make them worse for users who rely on assistive technology. The National Federation of the Blind has sued AccessiBe. Multiple plaintiffs have sued businesses that had overlays installed at the time of the lawsuit, and courts have not accepted the overlay as a defense.
The reason overlays fail is structural. An overlay sits on top of broken code and tries to patch it in real time using JavaScript. It cannot fix missing semantic structure. It cannot add meaningful alt text to images it has no context for. It cannot make an inaccessible form accessible after the fact. The broken code is still there.
If someone tells you a plugin will make your site compliant, they are either uninformed or selling you something. Compliance is a build quality issue. It has to be addressed in the code.
What a Properly Built Healthcare Website Accessibility Standard Looks Like
A WCAG 2.1 AA compliant medical site is not a stripped-down, ugly site. Accessibility and design quality are not in conflict. The constraint forces better decisions.
Here is what the build includes when it is done right from the start:
- Semantic HTML structure with proper heading hierarchy (one H1 per page, H2s for major sections, H3s for subsections). Screen readers use this to navigate the page.
- ARIA landmark roles on every major page region (header, nav, main, footer). These are the signposts assistive technology uses to orient users.
- All form inputs have persistent, programmatically associated labels -- not placeholders, labels. Required fields are identified in text, not just color.
- Error handling that announces errors to screen readers via ARIA live regions, not just visual styling.
- All interactive elements are reachable and activatable by keyboard. Focus states are visible and styled, not the browser default or suppressed entirely.
- Color contrast verified at 4.5:1 minimum for all body text, across all color combinations on the site including hover and focus states.
- Alt text written for every informational image, empty alt for decorative images.
- Skip navigation link as the first focusable element.
- All video content has accurate captions or a full transcript.
- Page language declared in the HTML lang attribute.
None of this is exotic. It is baseline professional work. It is also work that most cheap website builders and template-based agencies skip entirely because it adds time and requires knowledge they do not have.
At Black Flag Media, accessibility is built into every project from the wireframe stage. It is not a checklist we run at the end. The structure that makes a site accessible is the same structure that makes it fast, indexable, and maintainable. They are not separate concerns. You can see how we approach medical and dental builds on our services page.
How to Know If Your Current Site Has a Problem
You do not need to hire a consultant to get a first read on your site's accessibility status. These steps will surface the most common violations.
Run your homepage and your booking page through the WAVE accessibility checker at wave.webaim.org. It is free. Look at the error count, not the warnings. Errors are violations. Warnings are things to review. If you have more than five errors on a single page, you have real exposure.
Check your color contrast at webaim.org/resources/contrastchecker. Pull the hex codes for your body text and your background colors and run them through. If your site uses a light theme with gray text, expect failures.
Tab through your homepage without touching your mouse. Start at the top and hit Tab repeatedly. Watch where the focus indicator goes. If it disappears, you have invisible focus states. If you cannot reach your main navigation or your contact form, you have operability failures.
Turn on your operating system's built-in screen reader (VoiceOver on Mac, Narrator on Windows) and navigate your booking page. If the experience is confusing or incomplete, your patients who rely on screen readers are experiencing the same thing.
What you find will tell you whether you need targeted fixes or a rebuild. If the violations are isolated to a few elements, remediation on your current site may be sufficient. If the problems are structural -- bad HTML, no semantic markup, inaccessible third-party tools baked into the layout -- remediation is often more expensive than rebuilding correctly. Our pricing page lays out what a compliant rebuild costs and what it includes.
The Business Case Beyond Legal Risk
Approximately 26% of American adults live with some form of disability. One in four of your potential patients. Visual impairments, motor limitations, cognitive differences, hearing loss. These are not edge cases. They are a significant portion of the population actively looking for medical and dental care.
An accessible site serves them. An inaccessible site turns them away and sends them to a competitor who did the work.
Accessibility also correlates with overall site quality in ways that affect everyone. Proper semantic structure improves SEO because search engines parse your content the same way screen readers do. Fast, clean code improves page speed scores. Clear form design reduces abandonment for all users. The work you do to meet WCAG standards makes your site better for every visitor.
The practices that treat accessibility as a compliance checkbox miss this. The ones that treat it as a design and build standard end up with better sites across every metric.
If you want to know where your current site stands and what it would take to fix it, reach out. We do a straightforward accessibility audit as part of every new client conversation, and we build compliant from the ground up on every project. Start the conversation at our contact page.