Back to Blog
EducationJanuary 27, 202610 min read

ADA Website Accessibility for Home Care Agencies: The April 2026 Deadline

Ibrahim E.

CareCade Foundation

ADA Website Accessibility for Home Care Agencies: The April 2026 Deadline

The Deadline You Might Be Missing

Put This Into Practice

CareCade makes it easy to implement best practices for home care management.

On April 24, 2024, the U.S. Department of Justice (DOJ) published a final rule under Title II of the Americans with Disabilities Act requiring state and local government entities to make their web content and mobile applications accessible. The compliance deadline for most entities is April 24, 2026.

If your home care agency receives Medicaid funding, participates in government programs, or serves as a Medicaid waiver provider, this rule likely applies to you—either directly or through your contractual obligations with state agencies.

And even if you're exempt from Title II, the legal landscape for web accessibility under Title III (which covers private businesses) has made compliance a practical necessity. There were over 4,600 ADA web accessibility lawsuits filed in 2025, according to UsableNet's annual report, a trend that shows no sign of slowing.

Understanding the Rule

What WCAG 2.1 Level AA Requires

The Web Content Accessibility Guidelines (WCAG) 2.1 Level AA is the international standard for web accessibility, developed by the World Wide Web Consortium (W3C). It covers four principles, often summarized as POUR:

Perceivable

Content must be presentable in ways all users can perceive:

  • Text alternatives: Every image must have alt text describing its purpose
  • Captions: Video content needs captions; audio content needs transcripts
  • Color contrast: Text must have a minimum contrast ratio of 4.5:1 against its background
  • Responsive design: Content must be readable without horizontal scrolling at 320px width
  • No color-only information: Don't use color as the only way to convey meaning (e.g., "fields in red are required")

Operable

Interface elements must be usable by all:

  • Keyboard navigation: Every function must be accessible via keyboard alone (no mouse required)
  • No keyboard traps: Users must be able to navigate away from any element using keyboard
  • Sufficient time: Users must be able to extend time limits on forms and sessions
  • No seizure triggers: No content that flashes more than 3 times per second
  • Skip navigation: Provide a way to skip repeated content (like menus)
  • Focus indicators: Visible indication of which element has keyboard focus

Understandable

Content and interface must be comprehensible:

  • Readable text: Language of the page must be programmatically determinable
  • Predictable behavior: Navigation must be consistent across pages
  • Input assistance: Forms must have labels, error messages must be descriptive, and errors must be identified
  • Error prevention: For legal or financial transactions, submissions must be reversible, checkable, or confirmable

Robust

Content must work across different technologies:

  • Valid HTML: Clean markup that assistive technologies can parse
  • Name, role, value: All UI components must have programmatically determinable names and roles
  • Status messages: Dynamic content changes must be communicated to assistive technologies

What This Looks Like in Practice

For a home care agency website, WCAG 2.1 AA compliance means:

ElementCommon ProblemRequired Fix
Contact formsNo labels on input fieldsAdd visible, programmatic labels
Navigation menuNot keyboard-accessibleEnsure all menu items reachable via Tab/Enter
ImagesMissing alt textAdd descriptive alt text or empty alt="" for decorative images
PDFsScanned images of textProvide accessible PDF or HTML alternative
VideosNo captionsAdd synchronized captions
Color contrastLight gray text on whiteIncrease contrast to 4.5:1 minimum
MobileNot responsiveEnsure content works at all viewport sizes
FormsError messages unclearSpecific, descriptive error messages with field identification

Who Needs to Comply

Title II (Government Entities) — Hard Deadline

The DOJ rule specifically covers:

  • State and local government agencies
  • Entities receiving government funding or acting on behalf of government
  • Public-facing web content and mobile applications

For home care, this includes:

  • DSHS and DDA websites and portals
  • Area Agencies on Aging online resources
  • Medicaid managed care organizations member portals
  • Government-contracted providers whose web presence serves a public function

Deadline Details

Entity SizeDeadline
Population ≥ 50,000 (or "special district")April 24, 2026
Population < 50,000April 26, 2027

Title III (Private Businesses) — No Hard Deadline, But High Risk

Title III of the ADA covers "places of public accommodation"—and courts have increasingly ruled that websites qualify. While there's no specific WCAG deadline for private businesses, the litigation risk is significant:

  • 4,605 ADA website accessibility lawsuits filed in 2025
  • Healthcare is among the most-targeted industries
  • Serial litigants file hundreds of lawsuits per year against non-compliant sites
  • Average settlement: $10,000–$50,000 for small-to-mid-size businesses
  • Remediation costs on top of legal fees if you lose

The Bottom Line for Home Care Agencies

Whether you're legally required to comply by April 2026 depends on your specific situation. But practically speaking:

  • If you receive Medicaid reimbursement, your state agency may require compliance as a contract condition
  • If your website is accessible to the public, it's subject to ADA scrutiny
  • If a person with a disability can't use your website, you face both legal and reputational risk
  • The cost of proactive compliance is a fraction of the cost of a lawsuit

Common Accessibility Problems on Home Care Websites

Based on WebAIM's annual accessibility analysis of the top 1 million websites, the most common issues are:

1. Missing Form Labels (67% of sites)

<!-- WRONG -->
<input type="text" placeholder="Your Name">

<!-- RIGHT -->
<label for="name">Your Name</label>
<input type="text" id="name" name="name">

Home care sites often have contact forms, referral forms, and intake questionnaires without proper labels.

2. Low Color Contrast (83% of sites)

Text that looks fine to sighted users may be unreadable for people with low vision. Common offenders:

  • Light gray text on white backgrounds
  • White text on colored backgrounds without sufficient contrast
  • Small text with inadequate contrast (needs 4.5:1 for normal text, 3:1 for large text)

3. Missing Alt Text (58% of sites)

Every informative image needs alt text. Decorative images need alt="" to be ignored by screen readers.

Common home care site issues:

  • Team photos without identifying the people
  • Infographics with no text alternative
  • Icons used as buttons without accessible labels

4. Missing Skip Navigation (93% of sites)

Users who navigate by keyboard must tab through your entire menu on every page unless you provide a "skip to main content" link.

5. Inaccessible PDFs (very common in home care)

Home care sites often host PDFs for:

  • Service brochures
  • Intake forms
  • Policy documents
  • Care plan templates

If these are scanned images rather than accessible documents, screen reader users can't access them.

How to Assess Your Website

Quick Self-Check (15 minutes)

  1. Keyboard test: Unplug your mouse and try to navigate your entire site using only Tab, Enter, and arrow keys. Can you reach every link, button, and form field?
  2. Zoom test: Zoom to 200% in your browser. Does content still work without horizontal scrolling?
  3. Color contrast: Use a contrast checker on your most common text colors
  4. Alt text: Right-click images and check if alt text exists and is descriptive
  5. Form labels: Click on form labels—does the cursor move to the corresponding input field?

Automated Tools

  • WAVE: Free browser extension that highlights accessibility issues
  • axe DevTools: Browser extension for developers
  • Google Lighthouse: Built into Chrome DevTools, includes accessibility audit
  • Pa11y: Open-source automated testing tool

Important Caveat

Automated tools catch only 30-40% of accessibility issues, according to Deque Systems. Manual testing—especially with actual assistive technology users—is essential for true compliance.

Remediation Priorities

If your site has accessibility issues, prioritize based on impact:

High Priority (Fix Immediately)

  1. Keyboard navigation: Users who can't use a mouse are completely blocked
  2. Form accessibility: If people can't submit your contact or referral forms, you're losing clients
  3. Alt text on critical images: Informational images without alternatives
  4. Color contrast on body text: Main content must be readable

Medium Priority

  1. PDF accessibility: Provide HTML alternatives or remediate PDFs
  2. Video captions: Add captions to any video content
  3. Error handling: Make form errors clear and descriptive
  4. Focus indicators: Ensure keyboard users can see where they are

Lower Priority (But Still Required)

  1. Skip navigation links: Add a "skip to content" link
  2. Language declaration: Ensure HTML lang attribute is set
  3. Heading hierarchy: Use headings in proper order (h1, h2, h3)
  4. Link purpose: Links should make sense out of context ("Read more about our services" not just "Click here")

How CareCade Approaches Accessibility

CareCade's platform and public-facing pages are built with accessibility as a core requirement, not an afterthought.

Provider Directory: Built Accessible

CareCade's provider directory is designed for all users, including people with disabilities and their families:

  • Keyboard navigable: Every search, filter, and result is accessible via keyboard
  • Screen reader compatible: Proper ARIA labels and semantic HTML throughout
  • Color contrast compliant: All text meets WCAG 2.1 AA contrast ratios
  • Responsive design: Works on any device at any zoom level
  • Clear form labels: Every input field has a visible, associated label

Platform Accessibility

The CareCade management platform follows accessibility best practices:

  • Semantic HTML: Proper heading hierarchy and landmark regions
  • Focus management: Clear focus indicators and logical tab order
  • Error messaging: Descriptive error messages with field identification
  • Keyboard shortcuts: Power users can navigate efficiently without a mouse
  • Responsive interface: Works on mobile, tablet, and desktop

Family Portal

For families of individuals with disabilities—many of whom may have disabilities themselves—the family portal is built to be usable by everyone:

  • High contrast mode support
  • Screen reader-friendly data tables and reports
  • Accessible notification and alert systems
  • Clear, simple language

What to Do Before April 2026

Step 1: Audit Your Website

Run automated scans (WAVE, Lighthouse) and conduct a manual keyboard-only walkthrough. Document every issue found.

Step 2: Prioritize Fixes

Focus on issues that block access entirely (keyboard navigation, form labels) before cosmetic issues (focus indicators, heading hierarchy).

Step 3: Fix or Replace

For many small agency websites, it may be more cost-effective to rebuild on an accessible platform than to remediate an inaccessible site.

Step 4: Document Your Efforts

If you receive a demand letter or lawsuit, demonstrating good-faith efforts toward compliance matters:

  • Keep records of your accessibility audit
  • Document remediation steps taken
  • Publish an accessibility statement on your site
  • Provide a contact method for accessibility concerns

Step 5: Maintain Compliance

Accessibility isn't a one-time fix. Every time you add content, update pages, or add features, check for accessibility:

  • New images need alt text
  • New forms need labels
  • New pages need proper heading structure
  • New PDFs need to be accessible

The Bigger Picture

Web accessibility isn't just a legal requirement. It's a reflection of your values as a disability services provider.

If your agency exists to help people with disabilities live independently and participate in their communities, your website should be accessible to those same people. A home care agency with an inaccessible website is a contradiction.

The April 2026 deadline is a forcing function, but the principle is simple: the tools you use to reach families should work for all families, including those with disabilities.

Related Articles

See how CareCade builds accessibility into home care technology →

Ready to transform your care management?

Join agencies across Washington who are bringing transparency to developmental disabilities care.

Send Feedback

How's your experience?

Page: /blog/ada-website-accessibility-home-care-agency-2026