Why this became a headline issue in the last couple of years
Digital accessibility isn't new - the first WCAG standard was published back in 1999. What changed is the scale of enforcement. Law firms in the US turned accessibility lawsuits into a serial business model: they scan thousands of sites automatically, find basic failures (missing alt text, low contrast, buttons that don't respond to keyboard input), and send a demand letter or file suit. UsableNet's 2025 year-end report found more than 5,000 lawsuits were filed that year, with 1,427 of them against companies that had already faced an accessibility claim before - meaning a partial fix isn't enough (source: usablenet.com). Israel's legal basis differs but the outcome is similar: accessibility regulations under the Equal Rights for Persons with Disabilities Law require businesses, depending on their size, to make their website conform to Israeli Standard 5568.
What WCAG actually requires - without the confusion
The list sounds long, but most of what drives that 95.9% failure rate comes down to a handful of recurring, non-complicated fixes:
- Color contrast - text against its background needs sufficient contrast to be readable by people with visual impairments.
- Alt text on images - so screen readers can describe visual content.
- Full keyboard navigation - every action on the site (forms, menus, buttons) must work without a mouse.
- Correct semantic heading structure - a logical H1-H6 hierarchy, not just font-size choices.
- Properly labeled forms - every input needs a linked label, not just a placeholder that disappears once you start typing.
These are exactly the five most common failures the WebAIM Million report finds year after year - not rare bugs, but the default outcome of careless building.
Why templates and website builders keep failing here
The million home pages scanned in the WebAIM report include a huge share of template and website-builder sites - and not by coincidence. When a page is assembled from pre-built components (sliders, accordions, custom form widgets), each component ships with HTML someone else decided on in advance, usually without an accessibility check. Add another component, another plugin, another "effect" - and every layer adds new failures that can't be fixed without tearing the component apart. That's why fixing accessibility on an existing template site is almost always more expensive than building accessibly from the start: you're patching a symptom on top of a structure that was never designed for it, instead of building the structure right once.
What custom code does differently
On a site built in custom code, every HTML tag is a deliberate choice - a heading is an <h2> because it's a heading, not because someone bumped up the font size; a button is a real <button> that responds to a keyboard, not a <div> with a click handler bolted on. That semantic structure is exactly what a screen reader needs to navigate the page logically - and, not coincidentally, exactly what AI engines need to correctly parse content hierarchy and cite it. A study on ChatGPT citations found that 44.2% of citations come from the first 30% of a document (source: searchengineland.com) - but an AI engine, just like a screen reader, needs a clear heading structure to even know where "the first 30%" starts and ends. Technical accessibility and AI visibility share the same foundation: clean, semantic HTML.
Where to start without stopping everything
Full AA conformance is a process, not a switch you flip. A practical priority order for a business getting started:
- Run an initial automated scan (tools like axe or Lighthouse catch a large share of failures in minutes).
- Fix the five common failures listed above - they cover most of the real-world exposure.
- Manually test keyboard navigation on the contact form and every major CTA on the site.
- Publish an accessibility statement on a dedicated page - even if the work isn't fully done yet.
Building a new site? This is the cheap time to make it accessible
We build websites and landing pages in custom code with correct semantic structure from the ground up - it costs almost nothing extra on a new build, and several times more to retrofit on an existing site.
Get started