B2B Website ADA Compliance Guide
Learn key steps for B2B website ADA compliance to avoid legal risks and improve accessibility for all users.

B2B website ADA compliance is not a fringe concern for enterprises with dedicated legal teams. It is an active litigation risk for any business with a public-facing website.
Demand letters and lawsuits have targeted businesses of every size, and the most commonly cited violations are the same across virtually every case: missing alt text, inaccessible forms, and keyboard navigation failures. This article covers what compliance actually requires, where B2B sites consistently fall short, and what a compliant build looks like.
Key Takeaways
- WCAG 2.1 AA is the operative standard: The ADA does not publish its own web standard. Courts and the DOJ consistently reference WCAG 2.1 Level AA as the compliance benchmark for websites.
- Demand letters are the first signal: Most ADA web accessibility cases begin with a demand letter, not a lawsuit. Remediation after receiving one costs significantly more than building to standard from the start.
- Four failure categories drive most violations: Missing alternative text, insufficient color contrast, inaccessible forms, and broken keyboard navigation account for the majority of identified violations.
- Overlays and widgets do not create compliance: Automated accessibility overlay tools do not make a site compliant. They mask issues while the underlying code remains inaccessible, and several have been named in lawsuits.
- Compliance is a build decision, not a plugin: True ADA compliance is implemented at the code level through semantic HTML, correct ARIA attributes, and proper focus management.
- B2B sites are not exempt: Accessibility lawsuits target B2B companies, SaaS platforms, and professional services sites, not just consumer retail.
What Does ADA Compliance Actually Require of a B2B Website?
The ADA prohibits discrimination based on disability in places of public accommodation. Courts have consistently extended this to include websites, and the DOJ has confirmed websites are covered under Title III.
The operative standard is WCAG 2.1 Level AA. This covers four principles: Perceivable, Operable, Understandable, and Robust. It includes 50 success criteria covering text alternatives for images, captions for video, sufficient color contrast of 4.5:1 for normal text, keyboard accessibility for all interactive elements, and clear error identification in forms.
- The 2026 DOJ rule: In April 2026 the DOJ published a final rule formally adopting WCAG 2.1 AA as the web accessibility standard for state and local government entities. This strengthens the precedent for private sector enforcement.
- What is not compliance: Adding an accessibility statement to your footer, installing an overlay widget, or manually checking a few pages does not constitute compliance. Compliance requires systematic implementation across the full site.
For a structured implementation path, the ADA compliance guide maps each WCAG 2.1 AA criterion to a specific development action.
What Design Decisions Drive Most Accessibility Failures?
Accessibility failures on B2B websites almost always originate in B2B website UI/UX design decisions made before a line of code is written. Inaccessibility is a design problem before it is a development problem.
Designers who are not checking accessibility during the design phase produce specifications that developers cannot make compliant without rebuilding.
- Color contrast failures: The most frequently cited WCAG violation. Designers using brand colors without checking contrast. Ghost buttons and light gray text on white backgrounds are consistent offenders.
- Typography choices that fail at small sizes: Decorative or thin-weight fonts that pass contrast tests at desktop size but fail on mobile. Text-only elements that cannot be resized without breaking layout.
- Interactive elements without visible focus states: Removing the browser's default focus ring for aesthetic reasons without providing an accessible replacement. Keyboard-only users cannot determine where they are on the page.
- Icon-only buttons and controls: Navigation icons, close buttons, and CTAs that rely solely on visual context and carry no accessible label. Screen readers announce them as unlabelled buttons.
- Motion and animation without user control: Auto-playing carousels, parallax effects, and animated backgrounds that have no pause or stop mechanism. A WCAG 2.1 AA requirement and a real issue for users with vestibular disorders.
Fixing these failures at the design system level propagates corrections across the entire site rather than requiring page-by-page remediation.
How Does Dark Mode Affect ADA Compliance?
The relationship between dark mode and accessibility is more complex than most design teams expect. Implementing one without checking the other creates new compliance risks.
Dark mode is not inherently more accessible. While some users with visual impairments benefit from it, dark mode creates new contrast failures if brand colors are not adapted. A palette that passes at 4.5:1 on a white background may fail on dark backgrounds.
- The system-preference approach: Using CSS
prefers-color-schemeto honor the user's OS-level dark mode preference is both good UX and the accessibility-correct implementation. - Contrast requirements apply in every mode: All WCAG 2.1 AA contrast ratios must be met in every mode the site supports. Testing only light mode and shipping a dark mode toggle is a compliance gap.
- Images and icons in dark mode: PNG images and SVG icons with assumed white backgrounds fail visually in dark mode. Proper implementation requires either adaptive assets or transparent backgrounds tested in both modes.
- Focus indicators in dark mode: Focus states that were visible in light mode can disappear entirely in dark mode. Both modes require clearly visible, contrast-compliant focus rings.
Dark mode implementation without a parallel accessibility audit creates new exposure that may not be identified until a complaint arrives.
How Do You Test a B2B Website for ADA Compliance?
A practical testing protocol combines automated tools with manual keyboard navigation, screen reader testing, and color contrast auditing. Automated tools surface approximately 30 percent of violations. The other 70 percent require human testing.
Run the automated scan first, fix everything flagged, then run manual keyboard and screen reader tests. This two-step approach surfaces the violations that carry the highest remediation cost if discovered in litigation.
- Automated tools: Axe, Lighthouse, and WAVE surface color contrast failures, missing alt text, and missing form labels reliably. They cannot detect keyboard traps, screen reader output errors, or logical reading order issues.
- Keyboard navigation testing: Tab through every interactive element in order. Can you reach every button, link, and form field? Is the focus indicator always visible? Can you complete a form submission without using a mouse?
- Screen reader testing: Run NVDA or VoiceOver through your key pages: homepage, services page, contact form. Listen for unlabelled elements, incorrect reading order, and missing announcements on dynamic content.
- Color contrast auditing: Use the WebAIM Contrast Checker against every text and background combination on the live site. Test the rendered output, not the design file.
- Form and error testing: Submit every form with intentional errors. Are error messages specific, programmatically associated with the relevant field, and announced by screen readers?
The keyboard navigation test takes 20 to 30 minutes per key page and reveals failures that automated tools cannot detect.
What Are the Most Common ADA Violations on B2B Websites?
Six violation types appear most frequently across B2B websites and generate the majority of demand letters. Each one is detectable in a single audit session and fixable in a standard development sprint.
- Missing or meaningless alt text: Images with no alt attribute, or alt text that says "image" or the filename. Screen readers either skip them or announce useless information. Decorative images must have empty alt attributes (
alt="") to be correctly ignored. - Inaccessible forms: Form fields without associated labels. Placeholder text is not a label. Required field indicators that rely only on color. Error messages that appear visually but are not programmatically linked to the relevant input.
- Keyboard traps: Modal dialogs, custom dropdowns, and date pickers that capture keyboard focus and provide no escape mechanism. The user is stuck and cannot navigate further.
- Videos without captions: Any video content without accurate closed captions fails WCAG 2.1 AA. Auto-generated captions from YouTube or Wistia do not meet the standard without human review.
- PDFs and downloadable documents: Scanned PDFs, untagged documents, and forms that are not navigable by keyboard are frequently cited violations, particularly relevant for B2B sites with technical documentation or case studies.
- Insufficient time limits: Session timeouts or form auto-saves that do not warn the user and provide extension options.
What Other Compliance Areas Sit Alongside ADA?
Understanding your GDPR compliance obligations alongside ADA is particularly important when designing consent interfaces that must meet both legal frameworks.
ADA compliance is not the only legal obligation facing B2B websites. Several other frameworks apply depending on your customer base and operating jurisdiction.
- Section 508: Federal agencies and companies contracting with the federal government must meet Section 508, which references WCAG 2.1 AA. Building to ADA/WCAG standard covers Section 508 requirements in most cases.
- AODA: The Accessibility for Ontarians with Disabilities Act is mandatory for organizations operating in Ontario with 50 or more employees. It references WCAG 2.0 Level AA, which is relevant for B2B companies with Canadian operations.
- EN 301 549: The European accessibility standard for ICT products references WCAG 2.1 and becomes legally significant as EU member states implement the European Accessibility Act with a June 2026 deadline.
Good website security practices and accessibility share more implementation overlap than most teams expect. Both require clean code architecture, and sites built with proper semantic structure are easier to maintain compliantly under both frameworks.
Conclusion
B2B website ADA compliance is an active legal and reputational risk, not a future concern.
The violations that generate demand letters and lawsuits are the same ones that automated tools flag immediately: missing alt text, inaccessible forms, and broken keyboard navigation. Fixing them is a development task, not a plugin purchase.
Run an automated accessibility scan on your homepage and contact page today. Fix every flagged issue. Then test keyboard navigation manually. The two steps together will surface the violations that carry the highest remediation cost if discovered in litigation.
Want a B2B Website Built to ADA Standards From the Ground Up?
Most accessibility remediation happens reactively: a demand letter arrives, a legal team gets involved, and development starts under pressure and budget constraints that would not exist if the site had been built to standard from the start. The time and cost of remediation almost always exceed the time and cost of compliant initial development.
At LowCode Agency, we are a strategic product team, not a dev shop. Accessibility is implemented in our B2B website development work at the code level, not bolted on afterward. That means semantic HTML structure, proper ARIA attributes, keyboard navigation, and contrast compliance across every template and component, not just the homepage.
- Design phase compliance: We check every color combination, interactive state, and motion element against WCAG 2.1 AA before the design is approved for development.
- Semantic HTML structure: We build with proper landmark regions, heading hierarchy, and native HTML elements so assistive technologies navigate the site correctly.
- Form accessibility: Every input field has an associated label, every error has a programmatic link to its field, and every form submission can be completed without a mouse.
- Focus management: Every interactive element has a visible, contrast-compliant focus indicator. Modals trap and release focus correctly. Keyboard navigation follows a logical, predictable order.
- PDF and document accessibility: Where technical documentation or case studies are published as PDFs, we apply tagging, heading structure, and reading order to meet WCAG standards.
- Accessibility QA: We run automated scans, keyboard navigation tests, and screen reader tests on key pages as part of our standard QA process before delivery.
- Full product team: Strategy, UX, development, and QA from a single team that treats WCAG 2.1 AA compliance as a delivery standard, built in from the start.
We have built 350+ products for clients including Coca-Cola, American Express, Sotheby's, Medtronic, Zapier, and Dataiku. See client results or get in touch to discuss what compliant B2B website development looks like for your specific stack.
Last updated on
June 11, 2026
.









