Skip to content
Hands testing website accessibility on digital devices

Website Accessibility for Attorneys: What Law Firms Must Do

Treat your law firm’s website as a public accommodation and make it accessible using WCAG-informed practices. That is the short verdict. The ADA applies to websites, courts have repeatedly held that inaccessible sites can constitute discrimination under Title III, and the Department of Justice has made enforcement a stated priority. Three things you can do right now, before commissioning a full audit: press Tab through your intake form and confirm every field is reachable and labeled; check that every attorney headshot carries meaningful alt text (not “image001.jpg”); and submit your contact form with a blank required field to confirm the error message is announced to screen readers. Those three smoke tests catch the failures most likely to appear in a plaintiff’s evidence package.

Success looks like this: WCAG 2.1 Level AA compliance on your core client flows, intake forms that are fully keyboard-accessible, and either properly tagged PDFs or HTML alternatives for every downloadable document.

  • Keyboard tab test: Tab through your contact and intake forms without touching the mouse. Every field, button, and link must receive a visible focus indicator.
  • Alt text check: Right-click attorney photos and review the alt attribute. Decorative images should carry alt="". Meaningful images need a concise description.
  • Form error announcement: Submit an incomplete form and listen for whether an error message is announced by a screen reader (NVDA or VoiceOver work for a quick spot check).

Key Takeaways

Law firm websites must meet WCAG 2.1 Level AA on core client flows to reduce ADA Title III exposure, serve clients with disabilities, and protect the firm’s reputation.

Point Details
Run smoke tests immediately Tab through your intake form, check alt text on attorney photos, and test error announcements on contact forms before anything else.
Prioritize intake and PDFs Unlabeled form fields and untagged PDFs are the highest-risk surfaces and the easiest for plaintiffs to document as injuries.
Source-code fixes beat overlays Overlay widgets cannot fix missing alt text, untagged PDFs, or broken keyboard navigation; remediate in the codebase.
Publish an accurate statement An accessibility statement that honestly reflects your current status and provides a reporting contact is a recognized good-faith signal.
City Web Company offers pilot audits A scoped pilot covering your core flows delivers a prioritized remediation list within two weeks, with manual and automated testing included.

Table of Contents

What Does the ADA Actually Require for Law Firm Websites?

The Americans with Disabilities Act splits into several titles. Title II covers state and local government entities. Title III covers places of public accommodation, which courts and the DOJ have consistently interpreted to include private businesses with public-facing websites, including law firms. A private firm with a website that prospective clients use to find attorneys, submit intake forms, or schedule consultations is operating a service covered by Title III.

The technical standard courts and auditors reference is the Web Content Accessibility Guidelines (WCAG), published by the World Wide Web Consortium (W3C). WCAG organizes requirements around four principles: content must be Perceivable, Operable, Understandable, and Robust. Level AA is the compliance target that the DOJ’s rulemaking and most enforcement settlements reference. Level A is the floor; Level AAA is aspirational and not required for most commercial sites.

The DOJ’s position is clear: flexibility in how you comply does not mean you can leave your site inaccessible. ADA.gov guidance explicitly states that inaccessible web content creates barriers equivalent to a physical obstruction and that WCAG and Section 508 are the technical resources businesses should consult. Citing “we didn’t know” is not a defense once a complaint is filed.

WCAG 2.1 Level AA is the practical compliance target for private law firms. The DOJ’s final rule for public entities adopted it as the required standard, and private-sector enforcement settlements routinely reference the same benchmark.

Why Website Accessibility Matters for Law Firms

According to CDC data, many U.S. adults live with some form of disability. For a law firm, that is not an abstract statistic. It represents a significant share of the population that may need legal services and will encounter your website first. If a prospective client using a screen reader cannot navigate your intake form, they cannot hire you. That is both an ethical failure and a lost client.

The litigation exposure is real and growing. Under Title III, plaintiffs cannot collect direct financial damages in court, but they can obtain injunctive relief and recover attorneys’ fees, and private settlements frequently include financial payments to plaintiffs. Serial plaintiffs and plaintiff firms have developed efficient workflows for identifying inaccessible sites, documenting failed intake attempts, and filing demand letters. Law firms are not immune. In fact, a firm that advertises legal services while running an inaccessible site faces a reputational problem that goes beyond the lawsuit itself.

There is also a direct SEO benefit that many firms miss. Accessibility improvements, specifically semantic heading structure, descriptive alt text, and clean link labels, are the same signals that help search engines index and rank your pages. Accessibility and SEO share significant technical overlap, meaning remediation work often produces measurable gains in organic visibility alongside compliance. Fixing your headings for screen readers also fixes them for Google.

A Prioritized Checklist of What to Fix First on Your Law Firm Site

Not every page carries equal risk. Start with the surfaces where a failure creates a provable injury: the intake form, the contact page, the scheduling widget, attorney bio pages, and any downloadable PDF (retainer agreements, fee schedules, intake questionnaires). These are the pages a prospective client must use to hire you.

Core fixes, in priority order:

  • Labeled form fields: Every input must have a <label> element programmatically associated with it. Placeholder text alone does not count and disappears when the user starts typing.
  • Visible focus indicators: Remove any CSS rule that sets outline: none on focused elements. Users navigating by keyboard need to see where they are on the page.
  • Meaningful alt text on attorney photos: “Photo of Jane Smith, founding partner” is useful. “headshot” is not. Images used purely as decoration should have an empty alt attribute.
  • Keyboard-accessible navigation: Every menu item, dropdown, and modal must be reachable and operable without a mouse.
  • Color contrast at 4.5:1 for body text: Use the WebAIM Contrast Checker or the browser DevTools accessibility panel to verify. Gray text on white backgrounds frequently fails.
  • Captions on video: Any video on your site, attorney introductions, practice area explainers, testimonials, needs accurate closed captions. Auto-generated captions from YouTube are a starting point, not a finish line.
  • Tagged PDFs or HTML alternatives: An untagged PDF is invisible to a screen reader. Either run PDFs through Adobe Acrobat’s accessibility checker and repair tool, or provide the same content as an accessible HTML page.
  • ARIA used correctly: ARIA attributes can improve accessibility when used precisely, but incorrect ARIA (labeling a <div> as a button without keyboard behavior) actively breaks screen reader navigation. If your developer is not confident with ARIA, semantic HTML is safer.

Common failures on law firm CMS platforms include unlabeled form fields built with contact-form plugins, image-based phone numbers (a graphic of a phone number that a screen reader cannot read), and icon-only navigation without text labels.

Pro Tip: Avoid relying on an accessibility overlay widget as your sole fix. Overlays inject JavaScript that attempts to patch issues at the browser level, but they cannot fix missing alt text, untagged PDFs, or broken keyboard flows in the underlying code. Plaintiff firms are aware of overlays and have successfully argued they do not constitute compliance. Source-code remediation is the defensible approach.

How Do You Test Your Law Firm Website for Accessibility?

Testing has three layers, and you need all three. Automated tools catch roughly 30 to 40 percent of WCAG failures. Manual checks catch what automation misses. User testing with people who have disabilities catches what both miss.

Automated tools to run first:

  • axe-core (browser extension by Deque): the most widely used automated checker; integrates with Chrome DevTools and produces WCAG-referenced issue reports.
  • WAVE (WebAIM): visual overlay that flags errors directly on the page; useful for non-technical reviewers.
  • Lighthouse (built into Chrome DevTools): includes an accessibility audit alongside performance and SEO scores; good for a quick baseline.

Run each tool on your homepage, a practice-area page, your contact/intake form, and one attorney bio. That sample covers your highest-risk surfaces without auditing every page.

Manual checks to run after automated scans:

Tab through every form and interactive element. Use VoiceOver (Mac/iOS) or NVDA (Windows, free) to navigate your intake form by keyboard only and listen to what is announced. Check PDF tagging by opening a document in Adobe Acrobat and running the built-in accessibility checker. Spot-check color contrast on body text, button labels, and error messages.

User testing: Recruit two to three users who rely on assistive technology, specifically screen reader users and keyboard-only users, and ask them to complete your intake flow. A 60-minute moderated session will surface issues no automated tool will find.

Sample issue log fields for developer handoff:

Field Description
Page URL The specific page where the issue was found
Element selector CSS selector or XPath to locate the element
WCAG criterion The specific success criterion violated (e.g., Non-text Content)
Severity Critical / High / Medium / Low based on impact on core flows
Recommended fix Plain-language description of the code or content change needed
Owner Developer, content editor, or vendor responsible
Verification steps How to confirm the fix passes (manual test, screen reader check)

Pro Tip: Run automated scans on a staging copy of your site before each major content update or redesign sprint. Catching regressions before launch costs a fraction of what post-launch remediation costs.

Title III litigation follows a predictable pattern. A plaintiff, often represented by a firm that files accessibility cases at volume, visits your site, attempts to use a core feature (usually the contact form or intake process), documents the failure with screenshots and screen recordings, and files a demand letter or complaint. The documentation burden is low because the failures are often obvious and repeatable.

In court, Title III remedies include injunctive relief and attorneys’ fees. Plaintiffs cannot collect compensatory damages in federal court under Title III, but the combination of injunctive relief and fee-shifting creates strong settlement pressure. Most cases settle. Settlements typically include a payment to the plaintiff, a remediation timeline, and sometimes a monitoring period. The total cost of a settled case, including defense fees, settlement payment, and remediation work, often exceeds the cost of proactive remediation.

The DOJ has confirmed ongoing enforcement interest in web accessibility and has used its authority to investigate and resolve complaints against private businesses. The DOJ’s final rule for public entities signals the direction of federal policy, and private-sector enforcement follows that signal.

Risk mitigation actions to take now:

  • Commission a formal audit and retain the report. A documented audit showing you identified issues and began remediation is evidence of good faith.
  • Maintain a prioritized remediation log with dates, owners, and verification records.
  • Provide an accessible alternative for critical content (a phone number prominently displayed alongside any inaccessible form is a partial mitigation, not a substitute for fixing the form).
  • Publish an accessibility statement that accurately reflects your current status. Do not claim WCAG 2.1 AA compliance if you have not verified it.

How Do You Turn an Audit into a Remediation Plan?

An audit report without an owner and a deadline is just a list of problems. The remediation plan is where compliance actually happens.

Triage by impact on core flows:

Priority Scope Examples
Critical Intake, payments, contact, scheduling Unlabeled form fields, broken keyboard nav on modal
High Practice-area pages, attorney bios, PDFs Missing alt text, untagged retainer PDFs
Low Archival blog posts, decorative images Minor contrast issues on non-interactive elements

Fix Critical items in the first two weeks. High items in weeks three through six. Low items in the next sprint after that.

Roles to assign:

  • Marketing owner: Coordinates the project, manages vendor relationships, owns the accessibility statement.
  • Developer or CTO: Implements code fixes, runs regression checks, manages CMS configuration.
  • QA tester: Verifies fixes against WCAG criteria using both automated tools and manual screen-reader checks.
  • Outside vendor: Provides audit methodology, fix tickets with copy-paste code, and re-scan after remediation.

Acceptance criteria: A fix is “done” when the element passes the relevant WCAG success criterion on a manual test, a screen reader announces it correctly, and the automated scanner no longer flags it. Document the verification date and tester.

Contract clauses to include when hiring a vendor: Define the scope of pages covered, require deliverables as fix tickets with specific code (not just a report), include a warranty that the vendor’s work does not introduce new failures, and specify a re-scan cadence (quarterly is a reasonable baseline).

Pro Tip: Ask any vendor you evaluate whether their audit methodology includes manual testing by a screen reader user. An automated-only audit misses 60 to 70 percent of real-world failures. A vendor who cannot answer that question clearly is not the right choice.

What Does an Accessibility Remediation Project Actually Cost?

Cost varies by site complexity, not by firm size. The main drivers are the number of unique page templates (a 10-template site costs far less to remediate than a 40-template one), the complexity of intake forms and third-party integrations (scheduling widgets, chat tools, and payment processors each need separate testing), the volume of PDF documents requiring tagging or replacement, and CMS constraints that may require custom development rather than configuration changes.

Sample 8 to 12 week remediation timeline:

Week Milestone
1 to 2 Discovery: automated scan, manual audit of core flows, issue log delivered
3 to 4 Critical fixes: intake forms, contact page, keyboard navigation
5 High-priority fixes: attorney bios, practice-area pages, PDF tagging
8 QA and regression testing: screen-reader verification, re-scan with axe-core
9 User testing: moderated session with assistive-technology users
11 to 12 Launch, accessibility statement update, re-scan, governance handoff

Vendor selection checklist:

  • Audit methodology includes both automated tools and manual screen-reader testing
  • Deliverables include fix tickets with specific code or content changes, not just a PDF report
  • Developer resources are included in the engagement (not just a consultant who hands off to your team)
  • Re-scan is included after remediation to verify fixes
  • Vendor can describe their process for handling third-party integrations (forms, chat, scheduling)

A pilot audit covering your homepage, intake form, one practice-area page, and one PDF is a reasonable starting engagement. It produces a prioritized issue log and gives you enough information to scope the full remediation project and evaluate the vendor’s methodology before committing to a larger contract. City Web Company offers exactly this kind of scoped pilot for law firms, covering automated and manual checks with a prioritized remediation list delivered within two weeks.

What Should You Publish as an Accessibility Statement?

An accessibility statement is a public-facing page that tells users what your site’s current accessibility status is, how to report a barrier, and how you will respond. Publishing one is not a legal requirement under Title III, but it is a recognized best practice and a signal of good faith that matters in enforcement contexts.

A minimal, accurate statement looks like this:

Accessibility Statement

[Firm Name] is committed to making its website accessible to people with disabilities. We are working toward conformance with WCAG 2.1 Level AA. If you encounter a barrier on our site, please contact us at [email] or [phone number]. We will acknowledge your report within 48 hours and provide a remediation or workaround timeline. We welcome feedback and will use it to improve access for all users.

The statement must be accurate. If you have not completed a WCAG 2.1 AA audit, do not claim conformance. “Working toward conformance” is honest. “Fully compliant” without a verified audit is a claim that can be used against you.

Reporting form fields to capture from users:

  • URL of the page where the barrier was encountered
  • Device and operating system used
  • Assistive technology used (screen reader, switch access, voice control)
  • Brief description of the barrier
  • Contact information and preferred response method

Acknowledge every report within 48 hours. Provide a remediation timeline or an immediate workaround (a phone number to complete the same task) within five business days. Log every report and its resolution. That log is evidence of a proactive remediation process if a complaint is ever filed.

How Do Different Disabilities Affect How Clients Use Your Website?

Accessibility is not a single problem with a single fix. Different disabilities create different interaction patterns, and a law firm’s website needs to work across all of them.

Screen reader users (blindness, low vision) navigate by heading structure, landmark regions, and link text. If your headings skip levels (H1 to H4 with no H2 or H3), the page outline is broken. If your links say “click here” or “read more,” a screen reader user cannot tell where they go. Every link label should describe the destination.

Keyboard-only users (motor disabilities) cannot use a mouse. Every interactive element, forms, menus, modals, date pickers, must be reachable by Tab and operable by Enter or Space. A modal that traps focus (the user cannot Tab out of it) is a critical failure.

Hand pressing Tab key on keyboard

Users with hearing impairments need captions on all video content and transcripts for audio-only content. If your firm posts attorney introduction videos without captions, those users cannot access that content.

Users with cognitive disabilities benefit from plain language, consistent navigation, clear error messages, and forms that do not time out without warning. Legal content is already dense. Plain-language summaries of practice areas, short sentences, and clear calls to action reduce cognitive load for everyone, not just users with disabilities.

Accessible content writing is a discipline separate from code remediation, and it applies to everything your firm publishes: practice-area pages, blog posts, attorney bios, and especially downloadable documents.

For web content, use real heading tags (H1 through H4) to create a logical outline. Write link text that describes the destination (“Download our fee agreement” rather than “click here”). Keep sentences under 25 words where possible. Use bulleted lists for sequential steps or grouped items rather than long run-on paragraphs.

For PDFs, the standard is WCAG 2.1 and PDF/UA (ISO 14289). A tagged PDF includes a document structure tree that maps headings, paragraphs, lists, tables, and images to their semantic roles. Adobe Acrobat Pro’s accessibility checker identifies missing tags, reading order problems, and missing alt text on images within the document. For complex forms (retainer agreements, intake questionnaires), an HTML version is often more accessible and easier to maintain than a tagged PDF.

Practical steps for existing PDF libraries:

  • Run every client-facing PDF through Acrobat’s accessibility checker and repair the flagged issues.
  • For forms, evaluate whether an HTML form with server-side processing is more practical than a tagged PDF.
  • Set the document language in the PDF properties so screen readers use the correct pronunciation rules.
  • Add bookmarks to long documents so screen reader users can navigate by section.

Structuring legal content for machine readability also improves how AI tools and search engines parse your pages, creating a secondary benefit alongside accessibility compliance.

How Do You Build Accessibility into Your Law Firm’s Web Design Workflow?

Accessibility added after launch costs three to five times more than accessibility built in from the start. The most efficient approach is to treat WCAG 2.1 AA as a design requirement, not a post-launch checklist.

In practice, that means three things. First, your design system or component library should include accessible components by default: buttons with visible focus states, form fields with associated labels, color palettes that meet contrast requirements. Second, your developer acceptance criteria for every new feature should include a WCAG check before the ticket closes. Third, your vendor contracts for any new CMS, scheduling tool, or chat widget should include an accessibility warranty and require the vendor to provide a VPAT (Voluntary Product Accessibility Template) documenting the product’s conformance.

For firms using common legal CMS platforms (Clio Grow, Lawmatics, or general-purpose platforms like WordPress with legal themes), the platform’s default components often fail basic accessibility checks. Customization is usually required. When evaluating a new website design for your law firm, include accessibility requirements in the RFP and ask vendors to demonstrate keyboard navigation and screen-reader compatibility on their demo sites before you sign.

Designer hands assessing accessibility design components

Training matters too. ADA.gov’s first-steps guidance for public entities recommends training staff who create web content on accessibility requirements. The same logic applies to private firms: a content editor who understands why heading structure matters will not accidentally break it when updating a practice-area page.

The conventional framing treats website accessibility as a compliance checkbox, something to address after a demand letter arrives or before a site redesign. That framing is wrong, and it costs firms more than the alternative.

The firms that handle this well do not treat it as a one-time project. They fold accessibility into procurement decisions (every new tool gets a VPAT review), into content workflows (every new page gets a heading and alt-text check before it publishes), and into vendor contracts (re-scan clauses and deliverable-based acceptance criteria). That is not a heavy lift. It is a set of habits that, once established, cost almost nothing to maintain.

The intake path deserves special attention. If a prospective client cannot complete your intake form independently, you have not just failed a compliance test. You have lost a client and created a documented injury that a plaintiff’s attorney can use. Start there. Fix the intake form first, verify it with a screen reader, and then work outward to the rest of the site.

Accessibility is also not separable from your firm’s broader digital presence. The same semantic structure that helps a screen reader user navigate your site helps Google understand it. The SEO benefits of accessibility work are real and measurable, which means the investment pays off in more than one direction.

City Web Company Helps Law Firms Get Accessible and Stay That Way

Law firms that need to move from audit to remediation without adding internal headcount have a practical option in City Web Company. The agency offers accessible web design and development built around WCAG 2.1 AA standards, including pilot audits that cover your homepage, intake form, a practice-area page, and a sample PDF, with a prioritized remediation list delivered within two weeks.

City Web Company

The pilot includes both automated scanning (axe-core, Lighthouse) and manual screen-reader testing, so the issue log reflects real-world failures, not just what a scanner catches. From there, City Web Company’s development team implements fixes directly in your codebase, verifies each one against the relevant WCAG criterion, and delivers a re-scan report before handoff. Ongoing monitoring and quarterly re-scans are available as a retainer service for firms that want continuous governance rather than a one-time project. To start with a scoped pilot audit, contact City Web Company and describe your site’s current CMS and the core flows you need tested first.

Sources

FAQ

Does the ADA apply to private law firm websites?

Yes. Courts and the DOJ have consistently held that Title III of the ADA covers private businesses with public-facing websites, including law firms. An inaccessible site can constitute discrimination against prospective clients with disabilities.

What is WCAG 2.1 Level AA and why does it matter for attorneys?

WCAG 2.1 Level AA is the technical standard published by the W3C that courts, auditors, and the DOJ reference when evaluating web accessibility. It is the compliance target for both public-entity rulemaking and private-sector enforcement settlements.

Can an accessibility overlay widget make my law firm site compliant?

No. Overlay widgets cannot fix missing alt text, untagged PDFs, or broken keyboard navigation in the underlying code. Plaintiff firms are aware of overlays and have successfully argued they do not constitute compliance. Source-code remediation is the defensible approach.

What happens if a law firm is sued over website accessibility?

Under Title III, plaintiffs can obtain injunctive relief and recover attorneys’ fees. Most cases settle, and settlements typically include a financial payment, a remediation timeline, and sometimes a monitoring period. The total cost of a settled case routinely exceeds the cost of proactive remediation.

How often should a law firm audit its website for accessibility?

A full audit at least annually, plus a re-scan after any major site update or redesign. Automated scans should run before each significant content deployment. Quarterly re-scans are a reasonable governance cadence for firms with active content programs.

City Web Marketing Agency

City Web Company helps businesses grow smarter with custom digital marketing strategies that generate real leads and measurable results. Let’s build your growth plan together. Contact us today!

  Get Marketing Tips to Grow Your Business
Company

Marketing

Advertising

Websites