Web Accessibility for Small Businesses: A Practical Getting Started Guide

More than 96% of websites still fail basic accessibility standards — yet thousands of ADA lawsuits are filed every year, and small businesses are frequent targets. This guide cuts through the noise with clear, actionable steps to help you understand the legal landscape, fix the most common issues, and build a sustainable accessibility strategy without overspending.

<p>Imagine a potential customer landing on your website, ready to buy — but they can't read your menu because the text blends into the background, they can't tab through your checkout form because it wasn't built for keyboard navigation, and the images on your homepage have no descriptions at all. That customer leaves, frustrated and unserved. This isn't a rare edge case: <strong>roughly one in four U.S. adults lives with a disability</strong>, and research consistently shows that inaccessible websites cost businesses real revenue every single day. Meanwhile, the legal risk is mounting fast — nearly 4,000 ADA website lawsuits were filed in 2024 alone, and small businesses are increasingly in the crosshairs.</p> <h2>Why Web Accessibility Matters for Small Businesses Right Now</h2> <p>Web accessibility is the practice of designing and building websites that can be used by everyone, including people with visual, auditory, motor, or cognitive disabilities. For decades, many small business owners assumed accessibility was a concern only for large corporations or government agencies. That assumption is no longer safe — or accurate.</p> <p>The Americans with Disabilities Act (ADA) has long been interpreted by courts and the Department of Justice to cover websites. Under Title III of the ADA, places of public accommodation — which courts have broadly extended to include websites and e-commerce platforms — must be accessible to people with disabilities. A common misconception is that small businesses are exempt. In reality, <strong>Title III applies to all businesses, regardless of workforce size</strong>. Even businesses that operate exclusively online are not off the hook, because digital-only services can still deny equal access when online barriers are present.</p> <p>The enforcement environment has intensified dramatically. In 2024 alone, thousands of ADA website accessibility lawsuits were filed, and plaintiffs' firms increasingly target smaller companies precisely because they are less likely to have dedicated legal teams and more likely to settle quickly. Settlements alone typically range from $5,000 to $25,000, not counting attorney fees, remediation costs, and the reputational damage that follows. First-time ADA violations can carry civil penalties up to $75,000. These are not theoretical numbers — small businesses like a custom knifemaker and a fast-casual restaurant chain have both faced accessibility lawsuits in recent years, demonstrating that no business is too small or niche to be targeted.</p> <p>The DOJ has also been moving toward formal rulemaking. In April 2024, it finalized a rule under Title II of the ADA requiring state and local governments to conform to WCAG 2.1 Level AA, with deadlines in 2026 and 2027. While this rule directly covers government entities, courts in private-sector Title III cases are expected to look to the same standard when evaluating commercial websites. The regulatory direction of travel is clear.</p> <h2>Understanding the Accessibility Standard: WCAG in Plain English</h2> <p>When people talk about web accessibility compliance, they are almost always talking about the <strong>Web Content Accessibility Guidelines (WCAG)</strong>, developed by the World Wide Web Consortium (W3C). WCAG is not a law itself, but it is the technical benchmark that courts, regulators, and enforcement agencies consistently reference. Most legal frameworks — including the ADA, the EU's European Accessibility Act, Section 508, and Canada's Accessible Canada Act — require WCAG 2.1 or 2.2 Level AA compliance.</p> <p>The guidelines are organized around four core principles, often remembered by the acronym <strong>POUR</strong>:</p> <ul> <li><strong>Perceivable:</strong> Users must be able to perceive information presented on the site. This means text alternatives for images, captions for videos, and sufficient color contrast so that content is readable by people with low vision or color blindness.</li> <li><strong>Operable:</strong> Users must be able to navigate and interact with the interface. Every function must work with a keyboard alone, and users must have enough time to complete tasks without being rushed by auto-expiring sessions.</li> <li><strong>Understandable:</strong> Content and interface operation must be clear — predictable navigation, readable text at an appropriate level, and helpful error messages that tell users how to correct mistakes.</li> <li><strong>Robust:</strong> Content must work reliably across different browsers, devices, and assistive technologies such as screen readers, voice control software, and switch access devices.</li> </ul> <p>WCAG exists in several versions. WCAG 2.1, published in 2018, added 17 new success criteria over WCAG 2.0, covering improvements for mobile devices, users with low vision, and people with cognitive disabilities. WCAG 2.2, released in October 2023, adds nine more success criteria, many of which improve accessibility for people with low vision, motor disabilities, and cognitive challenges. The good news: the versions are backward-compatible, so meeting WCAG 2.2 also means you meet 2.1 and 2.0. <strong>WCAG 2.1 Level AA is currently the standard most commonly required by law</strong>, but aiming for 2.2 is the smarter long-term play.</p> <p>Each success criterion is tested at one of three conformance levels: A (minimum), AA (mid-range), and AAA (highest). Level AA is the practical target for most businesses — it balances genuine accessibility with what is achievable for most development teams and budgets. Level AAA is rarely mandated by law and is generally impractical to meet across an entire site.</p> <h2>The Five Most Common Accessibility Issues — and How to Fix Them</h2> <p>Despite years of growing awareness, the state of web accessibility remains poor across the industry. In 2025, over 96% of websites still have at least one detectable accessibility failure, with the average homepage containing around 51 distinct accessibility errors. The encouraging news for small businesses is that the most common problems are also among the most fixable. Addressing just the top five issues will eliminate the majority of barriers for users with disabilities and dramatically reduce your legal exposure.</p> <h3>1. Insufficient Color Contrast</h3> <p>Low color contrast between text and its background is the single most common accessibility failure — affecting nearly 80% of homepages according to the 2025 WebAIM Million report. WCAG 2.1 Level AA requires a contrast ratio of at least <strong>4.5:1 for normal text</strong> and <strong>3:1 for large text</strong> (18pt or larger, or 14pt bold). That light gray text on a white background that looks so clean in your designer's mockup? It almost certainly fails. You can test any color combination instantly with free tools like WebAIM's Contrast Checker or the built-in Lighthouse audit in Chrome DevTools. The fix is usually just updating a CSS color value.</p> <h3>2. Missing or Inadequate Image Alt Text</h3> <p>Screen readers — software used by blind and low-vision users to navigate the web — cannot interpret images. They rely entirely on the <code>alt</code> attribute in your HTML to describe what an image shows. Missing alt text leaves screen reader users in the dark. The fix is straightforward: every meaningful image needs a concise, descriptive alt attribute. Purely decorative images should use an empty alt attribute (<code>alt=''</code>) to signal to screen readers that the image can be safely ignored. Avoid stuffing alt text with keywords — write it as if you were describing the image to someone over the phone.</p> <pre><code>&lt;!-- Meaningful image: describe what it shows --&gt; &lt;img src='team-photo.jpg' alt='The Accsible support team at their 2024 company offsite in Austin, Texas'&gt; &lt;!-- Decorative image: empty alt so screen readers skip it --&gt; &lt;img src='divider-wave.png' alt=''&gt;</code></pre> <h3>3. Unlabeled Form Fields</h3> <p>Forms are where conversions happen — contact forms, checkout flows, newsletter sign-ups. They are also where accessibility commonly breaks down. When form fields lack proper label elements, screen reader users cannot determine what information each field requires. Placeholder text inside an input field is not a substitute for a label, because placeholder text disappears once a user starts typing. Every input needs a <code>&lt;label&gt;</code> element associated with it via matching <code>for</code> and <code>id</code> attributes, and error messages must clearly explain what went wrong and how to fix it.</p> <pre><code>&lt;!-- Correct: visible label associated with input --&gt; &lt;label for='email'&gt;Email Address&lt;/label&gt; &lt;input id='email' type='email' name='email' required&gt; &lt;!-- Wrong: placeholder only, no label --&gt; &lt;input type='email' placeholder='Email Address'&gt;</code></pre> <h3>4. Keyboard Navigation Barriers</h3> <p>Not everyone uses a mouse. Users with motor disabilities, repetitive strain injuries, or those who rely on voice control software all depend on keyboard navigation. Every interactive element on your site — links, buttons, form fields, dropdown menus, modals — must be reachable and operable using only the Tab, Enter, Space, and Arrow keys. A common developer mistake is applying <code>outline: none</code> in CSS to remove the browser's default focus ring for aesthetic reasons. This makes keyboard navigation effectively invisible for sighted keyboard users. Always provide a visible focus indicator, and test your site end-to-end using only a keyboard. If you get stuck anywhere, your users do too.</p> <h3>5. Poor Heading Structure</h3> <p>Screen reader users frequently navigate a page by jumping between headings, the way a sighted user scans visually. Skipping heading levels — jumping from an <code>&lt;h1&gt;</code> directly to an <code>&lt;h3&gt;</code>, or using heading tags purely for their default visual size — breaks this navigation model entirely. Each page should have exactly one <code>&lt;h1&gt;</code> as its main title, followed by a logical hierarchy of <code>&lt;h2&gt;</code>, <code>&lt;h3&gt;</code>, and so on. Never skip levels. Use headings to describe structure, not to style text. The free WAVE browser extension can generate a visual heading outline of any page in seconds.</p> <h2>Accessibility Tools and Testing: Where to Start</h2> <p>The good news for small business owners with limited technical resources is that several excellent free tools can help you identify and prioritize issues before you spend a dollar on remediation.</p> <p><strong>Google Lighthouse</strong> is built into Chrome's DevTools (press F12, then select the Lighthouse tab). It provides an accessibility score out of 100 alongside actionable recommendations. The global median Lighthouse accessibility score across the web is around 84/100, meaning there is room for improvement on most sites. <strong>WAVE by WebAIM</strong> is a browser extension that visually overlays accessibility errors and warnings directly on the page — excellent for communicating issues to non-technical stakeholders because the problems are immediately visible in context. <strong>axe DevTools</strong> is a developer-focused browser extension that is particularly good at catching code-level issues that Lighthouse might miss.</p> <blockquote>Automated tools are a powerful starting point, but they can only catch around 30–40% of accessibility issues. Human testing — navigating your site with only a keyboard, or using a free screen reader like NVDA (Windows) or VoiceOver (Mac/iOS) — is essential for catching the nuanced problems that automation misses.</blockquote> <p>When you run your first audit, you will likely surface a list of issues that feels overwhelming. Do not try to fix everything at once. Prioritize by impact: start with issues that affect your most-visited pages and your most critical user journeys (homepage, product pages, contact forms, checkout). Fix Level A violations before Level AA ones. Give particular attention to the issues most commonly cited in lawsuits: color contrast, missing alt text, unlabeled forms, and keyboard navigation failures.</p> <p>Once you have addressed the most pressing code-level issues, an accessibility widget or overlay SDK — like the one offered by Accsible — can serve a genuinely useful role as part of a layered strategy. A well-implemented widget empowers users to make real-time adjustments to contrast, text size, font style, and other display settings that match their individual needs. This puts control in the hands of your users and demonstrates active good-faith effort toward inclusion. The critical distinction is that a widget works best as a <em>complement</em> to clean underlying code, not a replacement for it. Widgets cannot fix structural problems like missing heading hierarchy or unlabeled form fields in your source HTML, so pairing a widget with genuine code-level remediation gives you the strongest possible foundation — better user experience, stronger compliance posture, and a visible signal to visitors that your business takes inclusion seriously.</p> <h2>The Business Case: Beyond Compliance</h2> <p>Compliance is a compelling reason to act, but it is far from the only one. The business case for web accessibility is robust, measurable, and often underappreciated by small business owners who think of it purely as a cost center.</p> <p>Start with market size. Around one in four Americans lives with a disability, representing tens of millions of potential customers. Research from the Return on Disability Group estimates the global population of people with disabilities at over one billion — a group with enormous collective spending power. When your website excludes these users, you are not just risking a lawsuit; you are actively turning away customers who are ready and willing to spend money with you.</p> <p>Accessibility improvements also translate directly into better SEO performance. Search engines and screen readers need the same things from a website: semantic HTML structure, descriptive image alt text, clear heading hierarchies, and fast load times. One study analyzing 10,000 websites found that <strong>WCAG-compliant sites gained 23% more organic traffic</strong> and ranked for 27% more keywords than non-compliant sites. Separately, accessible websites have shown longer average session durations, lower bounce rates, and higher conversion rates compared to non-accessible competitors. Better structure helps Google understand your content; it also helps everyone navigate it more easily.</p> <p>There is also a reputational dimension. As consumer expectations around diversity, equity, and inclusion continue to grow, an accessible digital experience signals that your organization takes inclusion seriously. Brands that lead on accessibility attract broader customer bases and build stronger loyalty among users with disabilities — a demographic that is highly attuned to which businesses respect their needs and which do not.</p> <h2>A Financial Incentive You May Not Know About: The Disabled Access Tax Credit</h2> <p>One of the most overlooked benefits for small businesses pursuing accessibility is a federal tax incentive specifically designed to offset the cost. The <strong>Disabled Access Credit (IRS Form 8826)</strong> is a non-refundable credit available to eligible small businesses that incur expenses making their facilities and digital services accessible to people with disabilities.</p> <p>To qualify, your business must meet at least one of two criteria: gross receipts of <strong>$1 million or less</strong> in the prior tax year, or <strong>30 or fewer full-time employees</strong> in the prior tax year. The credit covers <strong>50% of eligible access expenditures</strong> between $250 and $10,250, for a maximum credit of <strong>$5,000 per year</strong>. Importantly, eligible expenses include digital enhancements such as making your website accessible — adding alt text, keyboard navigation, screen reader support, or undertaking a professional WCAG audit and remediation project. The credit can be claimed each year that you incur qualifying access expenditures, and unused credit can be carried forward to future tax years.</p> <p>In addition to the Disabled Access Credit, there is a separate <strong>Architectural Barrier Removal Tax Deduction</strong> (IRS Section 190) available to businesses of any size, allowing a deduction of up to $15,000 per year for barrier removal expenses. Both incentives can be used in the same tax year, provided the same dollar amount is not claimed twice. If you are investing in website remediation this year, make sure to discuss these credits with your tax professional and file IRS Form 8826 alongside your return.</p> <h2>Building an Ongoing Accessibility Strategy</h2> <p>One of the most important mindset shifts for small business owners approaching accessibility for the first time is understanding that <strong>accessibility is not a one-time project</strong> — it is an ongoing practice. Websites change constantly. New pages are added, content is updated, plugins are installed, and third-party integrations are embedded. Each change is an opportunity to introduce new accessibility barriers if accessibility is not baked into how your team works.</p> <p>A sustainable accessibility strategy for a small business does not need to be expensive or complex. Start with an audit — even a free automated scan using Lighthouse or WAVE — to establish your baseline. Prioritize the highest-impact issues on your most critical pages and fix those first. Document what you have done; a written record of your remediation efforts is valuable evidence of good faith if you ever receive a demand letter. Publish an accessibility statement on your website that describes your commitment, the standard you are working toward, and a contact method for users to report issues. Many users with disabilities will give businesses a chance to fix problems if they know there is a responsive human being on the other end.</p> <p>As you build your team's habits, consider designating one person — even a part-time developer or a content manager — as your accessibility point of contact. Train your content creators to write meaningful alt text for every image they upload and to use your CMS's heading styles correctly. Make accessibility part of your QA checklist when launching new pages or features. These small, consistent habits prevent the accumulation of accessibility debt that makes remediation so expensive when addressed retroactively.</p> <p>Finally, if you are working with an external developer or agency on a site rebuild or major redesign, write accessibility into the brief from day one. Retrofitting an inaccessible site is always more expensive than building an accessible one from the start. Require WCAG 2.1 Level AA conformance as a deliverable, ask for documentation of how it was tested, and include accessibility testing as a standard part of your acceptance criteria before you sign off on any new work.</p> <h2>Key Takeaways</h2> <ul> <li><strong>Small businesses are not exempt.</strong> ADA Title III applies to all businesses that serve the public, regardless of size or whether they operate online-only. Plaintiffs' firms specifically target smaller companies because they are more likely to settle quickly — proactive action now is far cheaper than reactive defense later.</li> <li><strong>WCAG 2.1 Level AA is the standard to aim for.</strong> It is the benchmark referenced by courts, the DOJ, and most global accessibility laws. Aim for WCAG 2.2 to future-proof your site. The four POUR principles — Perceivable, Operable, Understandable, Robust — are your guiding framework.</li> <li><strong>Fix the big five first.</strong> Color contrast, missing alt text, unlabeled forms, keyboard navigation failures, and broken heading structure account for the majority of accessibility errors across the web and the majority of legal complaints. These are also among the quickest and cheapest issues to address.</li> <li><strong>Use a widget as part of a layered strategy, not a silver bullet.</strong> An accessibility widget like Accsible can empower users with real-time customization and signal your commitment to inclusion — but it works best alongside clean, accessible underlying code. Code-level remediation is what courts ultimately look for.</li> <li><strong>Claim your tax credit.</strong> If your business has $1 million or less in gross receipts or 30 or fewer full-time employees, you may be eligible for up to $5,000 per year in federal tax credits via IRS Form 8826 to offset the cost of web accessibility improvements. Talk to your tax professional.</li> </ul>
AccessibilitySmall businessGuideComplianceWcagAda