Web Design

Website Accessibility in 2026: What the European Accessibility Act Means for Your Business

By reza kalate
Share:

A client came to us last year with a straightforward complaint: their online booking form worked fine, conversions were fine, but a customer had emailed saying she couldn't complete a purchase using her keyboard because she couldn't see where the cursor had landed. That single email turned into an audit that found the site's focus states had been silently disabled by a CSS reset two redesigns ago, that half the product images had no alt text, and that the contrast on the "Add to cart" button was borderline unreadable in direct sunlight on mobile. None of that showed up in the usual analytics. It only showed up when someone who actually needed those things tried to use the site.

That's the practical reality behind a topic that's gotten a lot more attention since June 2025, when the European Accessibility Act (EAA) became enforceable across EU member states. If you run a business with any digital presence in Europe, you've probably seen the term floating around, often with more alarm than accuracy. This article covers what the EAA actually requires, who it applies to, what standard to build against, and how to get your own site into reasonable shape without hiring a legal team first.

What "accessible" actually means in practice

Accessibility gets reduced to "screen reader support" more often than it should. Screen readers matter, but they're one piece of a much wider picture. In practice, an accessible website means:

  • Keyboard navigation: every interactive element (menus, forms, filters, modals) can be reached and operated using Tab, Enter, and arrow keys alone, with no mouse required.
  • Visible focus states: when you tab to a button or link, it's obvious where you are. This is the exact thing that broke in the story above, and it's one of the most common accessibility regressions we find in redesign audits, because it's invisible unless you're actually using a keyboard.
  • Sufficient color contrast: text and interactive elements need enough contrast against their background to be readable, including for users with low vision or for anyone using a phone outdoors.
  • Descriptive alt text: images convey meaning through a text alternative, so screen reader users and anyone with images turned off still get the content.
  • Properly labeled forms: every input has a real, programmatically associated label, not just placeholder text that disappears the moment someone starts typing.
  • Logical heading structure: H1 through H3 tags that actually describe the page hierarchy, so screen reader users can jump between sections instead of reading everything linearly.
  • Captions and transcripts: for video and audio content, so it's usable without sound and searchable/indexable as text.

None of this is exotic. Most of it is standard front-end craftsmanship that got skipped somewhere along the way, usually under deadline pressure or because a template was copied without checking what it actually rendered.

What the European Accessibility Act actually requires

The EAA is an EU directive, which means each member state transposes it into national law. The general framework is shared, but implementation details, timelines for specific sub-sectors, and enforcement mechanisms vary by country. It applies to businesses providing certain products and services within scope of the directive, including:

  • E-commerce (online stores selling goods or services to consumers)
  • Banking and consumer financial services
  • Transport: ticketing and booking systems for air, rail, bus, and ferry travel
  • Electronic communications services (telecoms, messaging apps)
  • E-books and dedicated e-reading software
  • Certain consumer electronics, such as smartphones, computers, and ATMs/ticketing terminals

It's worth being precise here: the EAA does not blanket-cover every website in Europe. It's scoped to specific product and service categories, with some exemptions for microenterprises (broadly, companies with fewer than 10 employees and under €2 million in annual turnover) providing services, though that exemption doesn't extend to the products themselves in every case, and it doesn't mean smaller businesses are automatically off the hook if they operate in a covered sector. If your business sells physical goods online, runs a booking system, or offers any form of consumer financial service, you're very likely in scope regardless of your size.

Sweden is a useful example of how this layers on top of existing rules rather than starting from zero. Public sector digital services in Sweden have been subject to accessibility requirements since 2019 under DOS-lagen (the Act on Accessibility to Digital Public Service), based on the same WCAG standard the EAA now points to for the private sector. So Swedish businesses working with the public sector, or watching how those requirements get enforced, already have a reference point for what "in practice" compliance looks like; the EAA extends a similar expectation into private commercial services.

Because scope, timelines, and enforcement details differ by country and by sector, this article is a practical starting point, not legal advice. If you're unsure whether your business falls within the EAA's scope, it's worth a short conversation with a legal advisor familiar with your specific sector and market. The cost of that conversation is small compared to retrofitting a platform after the fact.

WCAG 2.1/2.2 AA: the practical benchmark

Regardless of exactly which legal framework applies to your business, there's really one standard worth building against: the Web Content Accessibility Guidelines (WCAG), currently at version 2.2, with Level AA as the conformance target referenced by the EAA and by most national accessibility laws in Europe (including Sweden's DOS-lagen). WCAG is organized around four principles (content should be Perceivable, Operable, Understandable, and Robust) and Level AA sits as the realistic middle tier: more rigorous than the baseline Level A, but without the very strict requirements of Level AAA that most mainstream sites don't need and rarely achieve.

If you only take one thing from the legal side of this topic, take this: build to WCAG 2.1/2.2 AA and you'll be aligned with essentially every accessibility law you're likely to encounter across the EU, not just the EAA. It's the standard that shows up again and again across different countries' legislation, which makes it a far more useful target than trying to track a dozen national interpretations individually.

A practical starting checklist

You don't need a full audit to make meaningful progress. These are the highest-impact, lowest-effort fixes we look for first on any site:

  • Alt text on all meaningful images. Decorative images (spacers, background flourishes) can have empty alt attributes; everything that conveys information needs a real description.
  • Color contrast ratios of at least 4.5:1 for normal text and 3:1 for large text, checked against the actual background it sits on, not just the design file.
  • Full keyboard navigation: tab through your entire site, including menus, filters, and any pop-ups, without touching a mouse. If you get stuck or lose track of where focus is, so will your users.
  • Visible, high-contrast focus indicators on every interactive element; never remove the default outline in CSS without replacing it with something equally visible.
  • Explicit form labels tied to their inputs with the `for`/`id` attribute pairing (or `aria-label` where a visible label genuinely isn't appropriate), plus clear error messages that explain what to fix.
  • A logical heading hierarchy: one H1 per page, headings that nest in order, and no heading tags chosen purely for their font size.
  • Captions on video content and transcripts for podcasts or audio-only content.
  • Descriptive link text: "Read our shipping policy" rather than a bare "Click here," since screen reader users often navigate by pulling up a list of links out of context.

Running through this list honestly, on your actual live site rather than the design mockups, catches most of the highest-severity issues before you need to bring in outside help.

Self-audit vs. bringing in a specialist

A basic self-audit is genuinely useful and doesn't require special tooling. Turn off your mouse and navigate your site by keyboard alone. Run your key pages through a free automated checker (tools like WAVE or the Lighthouse accessibility audit built into Chrome DevTools catch a meaningful chunk of issues, particularly contrast and missing alt text). Try your site with a screen reader for ten minutes (VoiceOver on Mac or NVDA on Windows, both free) just to feel how differently it reads.

That said, automated tools reliably catch only a fraction of WCAG's success criteria (usually cited in the range of 30-40%) because a lot of accessibility is contextual: whether alt text is actually descriptive rather than just present, whether a form's error handling makes sense when read aloud, whether a custom dropdown behaves correctly for assistive technology. That's the point where it's worth bringing in a specialist, particularly if:

  • You operate in a sector clearly within EAA scope (e-commerce, financial services, transport booking) and need documented conformance, not just good intentions.
  • Your site relies heavily on custom interactive components: filters, multi-step checkouts, booking calendars, dashboards, where automated tools tend to miss the most.
  • You've done the self-audit, fixed what you found, and want an independent check before treating the work as done.

If your last redesign is more than a couple of years old, accessibility gaps are often one symptom among several worth checking. It's covered briefly as one of several warning signs in 10 Signs Your Website Needs a Redesign, alongside things like slow load times and poor mobile behavior. This article is really the deeper dive into that one item.

The business case beyond compliance

Treating accessibility purely as a legal risk to manage undersells it. A few things tend to become obvious once a business actually goes through the process:

The addressable audience is larger than most teams assume. Disability isn't a small, fixed minority: it includes permanent conditions, temporary ones (a broken arm, an eye infection), and situational ones (bright sunlight on a phone screen, a noisy environment where captions matter, a slow connection where clean semantic markup loads faster than a bloated custom layout). Building for the edges tends to improve the experience for the middle too.

There's real overlap with SEO. Descriptive alt text, clean heading hierarchy, meaningful link text, and fast, semantic markup are accessibility fundamentals and SEO fundamentals at the same time: search engines and screen readers are both, in a sense, non-visual users trying to parse your page's structure. Fixing one tends to help the other.

It's generally better UX for everyone. Clear focus states help power users navigating quickly. Good contrast helps anyone in bad lighting. Well-labeled forms reduce errors and abandoned checkouts across the board, not just for users with disabilities. Accessibility work rarely stays contained to "the accessibility feature"; it tends to raise the baseline quality of the whole interface.

None of this requires rebuilding your site from scratch. Most businesses can meaningfully close the gap with focused front-end work: fixing contrast and focus states, restructuring headings, adding real alt text and form labels, and captioning existing video content. If a self-audit turns up more than a handful of structural issues, or you'd rather have a specialist confirm the work meets WCAG 2.1/2.2 AA before calling it done, that's exactly the kind of project our custom web design work covers. Get in touch through our contact page and we can talk through what your specific site actually needs.

You Might Also Like