← Back to Blog

Website Accessibility in 2026: WCAG 2.2 and the EAA — What UK Businesses Need to Know

Website accessibility checklist showing WCAG 2.2 compliance requirements for UK businesses

One in five people in the UK has a disability. That is roughly 16 million potential customers who may struggle to use your website right now, and in many cases, they will leave without telling you why. Website accessibility is not a nice-to-have or a box-ticking exercise. It is a legal requirement, a competitive advantage, and the right thing to do.

The rules have changed too. The European Accessibility Act came into force in June 2025. WCAG 2.2 is now the recognised standard. And the WebAIM Million report, which scans the top one million home pages every year, found that 96.3% of them still have detectable accessibility failures. Most businesses are not even close to compliant, and many do not realise it.

This guide explains what the law actually requires, what WCAG 2.2 means in plain terms, and the specific things you can fix on your website this week.

What is website accessibility?

Accessibility means your website works for everyone, including people who are blind, deaf, have limited mobility, cognitive differences, or are simply getting older. It covers things like screen reader compatibility, keyboard navigation, colour contrast, text sizing, and captioning on videos.

The standard that defines this is WCAG (Web Content Accessibility Guidelines), published by the W3C — the same organisation that maintains HTML and CSS standards. WCAG is not a law itself, but it is the benchmark that laws reference. The current version is WCAG 2.2, published in October 2023, and it is built around four principles. Your content must be:

The law: what UK businesses must comply with

Equality Act 2010 (UK domestic law)

The Equality Act 2010 requires businesses to make “reasonable adjustments” for disabled people. Courts have increasingly treated websites as a service covered by this duty. If a disabled customer cannot use your website to browse products, make a booking, or find your contact details, you may be in breach. There is no specific technical standard written into the Act, but WCAG 2.2 Level AA is widely accepted as the benchmark for what “reasonable” looks like.

Public Sector Bodies Accessibility Regulations 2018

If you work with public sector clients, or your website is connected to a public body, these regulations apply directly. They require WCAG 2.2 Level AA compliance (updated from 2.1 in October 2024). Public sector organisations must publish an accessibility statement and fix failures within a reasonable timeframe.

European Accessibility Act (EAA)

The EAA is the big one for private businesses. It came into force on 28 June 2025 across all EU member states. If your UK business sells products or services to customers in the EU — through an online shop, a booking system, or even a contact form — you must comply. The Act covers websites, mobile apps, e-commerce, banking, transport services, and more.

Penalties depend on the member state, but they can include fines, orders to stop selling in that market, and public naming. The EU is not messing around with enforcement either; several member states have already started compliance checks.

Not sure if the EAA applies to you? If someone in France, Germany, Spain, or any other EU country can buy from your website, fill in your contact form, or use your online booking system, it applies. It does not matter where your business is based.

What WCAG 2.2 actually changed

WCAG 2.2 added nine new success criteria on top of what was in WCAG 2.1. Most of them focus on making things easier for people with cognitive disabilities and people who use mobile devices. The ones most relevant to small business websites are:

The rest of the new criteria deal with things like accessible authentication (no cognitive function tests as the only login method) and focus not being obscured by sticky headers or cookie banners.

The five most common failures (and how to fix them)

The WebAIM Million report scans the top million websites every year. These are the failures it finds most often, and they are all fixable without a full redesign.

1. Low contrast text

Found on 86% of home pages. Light grey text on a white background. White text on a light image. Mid-grey on dark grey. These all fail WCAG’s minimum contrast ratio of 4.5:1 for normal text (3:1 for large text).

How to fix it: Use a contrast checker (WebAIM has a free one). Aim for 7:1 if you can — it is easier to read for everyone, not just people with low vision. Your brand colours might need adjusting slightly. A good designer can keep your palette intact while making every text element readable.

2. Missing alt text on images

Found on 58% of home pages. When a screen reader encounters an image with no alt text, it either skips it entirely or reads out the file name (which is usually something like “IMG_4392.png”). Neither is helpful.

How to fix it: Every <img> tag needs an alt attribute. Describe what the image shows and why it matters. Decorative images (purely visual, no information) should have alt="" so screen readers skip them. If your site has hundreds of images, start with the ones on your homepage and most-visited pages.

3. Missing form labels

Found on 57% of home pages. A contact form with placeholder text (“Enter your name”) instead of a proper <label> element is invisible to screen readers once the user starts typing. The placeholder disappears and the field becomes a mystery.

How to fix it: Every form input needs a <label> linked to it with a for attribute. Placeholder text is fine as a hint, but it is not a substitute for a label. This is one of the easiest fixes on the list.

4. Empty links

Found on 50% of home pages. A link with no text — often an icon inside an <a> tag with no visible label — is completely useless to a screen reader user. They hear “link” and have no idea where it goes.

How to fix it: Add an aria-label to the link (e.g., aria-label="Follow us on Twitter") or add visually hidden text inside the link. If you use icon fonts or SVG icons inside links, make sure there is a text alternative.

5. Missing document language

Found on 29% of home pages. If your <html> tag does not have a lang attribute, screen readers do not know what language to use for pronunciation. This takes about five seconds to fix.

How to fix it: Change <html> to <html lang="en"> (or "en-GB" for British English). That is it.

A practical accessibility checklist for this week

You do not need to rebuild your website. Start with these steps, which you can work through in a few hours:

Step 1: Run an automated scan. Open your website in Chrome, press F12, go to the Lighthouse tab, and run an Accessibility audit. Also paste your URL into WAVE (free, by WebAIM). These tools catch about a third of real-world issues, but they give you a quick baseline.

Step 2: Keyboard test. Put your mouse in a drawer. Press Tab to move through your site. Can you reach every link, button, and form field? Can you see where the focus is? If you get stuck or lost, so will keyboard-only users.

Step 3: Check your colour contrast. Use the WebAIM Contrast Checker on your main text colours. Normal text needs 4.5:1. Large text (18px bold or 24px regular) needs 3:1.

Step 4: Fix your forms. Make sure every input has a real <label>. Make sure error messages are specific (“Please enter a valid email address” not just “Error”). Make sure the form works with keyboard-only input.

Step 5: Add alt text to your images. Start with the images on your homepage and most-visited pages. Describe what the image shows. Keep it concise but informative.

Step 6: Check your headings. Your page should have exactly one <h1>. Subheadings should follow a logical order (<h2>, then <h3>, etc.) without skipping levels. Screen reader users navigate by headings, so this structure matters.

Quick win: The lang attribute, alt text on images, and form labels can all be fixed in an afternoon. These three changes alone move the needle significantly and are the most impactful starting point.

Why accessibility helps your business (beyond legal compliance)

Accessibility is often framed as a cost or a legal burden. The reality is different.

Better SEO. Search engines and screen readers parse your site in similar ways. Alt text helps Google understand your images. Proper heading structure helps Google understand your content. Semantic HTML helps both. Accessible sites tend to rank higher because they are better structured.

Higher conversion rates. If someone cannot complete your contact form or navigate your pricing page on their phone, they are gone. Accessible design is usable design. The things that help a screen reader user (clear labels, logical structure, readable text) help everyone.

Larger audience. In the UK alone, there are 16 million disabled people. Add temporary impairments (a broken arm, an eye infection, recovering from surgery) and situational ones (bright sunlight on a screen, using a phone one-handed on a train), and the number of people who benefit from accessible design is far larger than most businesses assume.

AEO advantage. AI-powered search tools like ChatGPT and Perplexity read your site the same way screen readers do. Clean, semantic, well-structured content is easier for AI to extract and recommend. If you are investing in Answer Engine Optimisation, accessibility work gets you halfway there.

What a professional accessibility audit involves

Automated tools catch roughly 30% of accessibility issues. The rest require manual testing and human judgment. A professional audit typically covers:

The output is a prioritised list of issues with specific remediation guidance: what to fix, how to fix it, and which WCAG criterion it violates.

How we build accessible websites

Every website we build at Daedalus Design starts with accessibility in the markup. We use semantic HTML (proper headings, landmarks, lists), ensure keyboard navigation works from the first commit, test colour contrast before finalising any design, and run automated and manual checks before launch. Accessibility is not an afterthought or a separate phase — it is baked into how we write code.

If you already have a website and need to know where you stand, we can run an accessibility audit that tells you exactly what needs fixing and how much work is involved. No jargon, no scare tactics, just a clear list of issues and a plan to fix them.

Frequently asked questions

Does my small business website need to be accessible?

Yes. The Equality Act 2010 already requires UK businesses to make reasonable adjustments for disabled people, and websites are covered. If you sell to EU customers, the European Accessibility Act adds a separate legal requirement. Beyond legal compliance, accessible websites reach more customers, rank better in search, and convert more visitors into enquiries.

What is WCAG 2.2?

WCAG 2.2 (Web Content Accessibility Guidelines version 2.2) is the international standard for making websites accessible. It was published by the W3C in October 2023 and covers four principles: your site must be Perceivable, Operable, Understandable, and Robust. The UK government adopted WCAG 2.2 Level AA as the standard for public sector websites in October 2024, and it is now the benchmark most businesses aim for.

What are the most common accessibility problems?

According to the WebAIM Million report, 96% of home pages have detectable WCAG failures. The most common problems are: low contrast text (86% of pages), missing alt text on images (58%), missing form labels (57%), empty links with no text (50%), and missing document language (29%). These are all fixable with straightforward changes to your HTML and CSS.

How do I check if my website is accessible?

Start with free automated tools: run your site through Google Lighthouse (built into Chrome DevTools), WAVE (wave.webaim.org), or axe DevTools. These catch roughly a third of accessibility issues. Then try navigating your site using only a keyboard — no mouse. If you cannot reach or use something, neither can someone who relies on assistive technology.

What is the European Accessibility Act (EAA)?

The European Accessibility Act (Directive (EU) 2019/882) is an EU law that came into force on 28 June 2025. It requires private sector businesses to make their products and services accessible to people with disabilities. If your UK business sells to customers in any EU country, you must comply. Penalties vary by member state but can include fines and being barred from selling in that market.

Not sure where your website stands?

We can run a full accessibility audit and give you a clear, prioritised list of what to fix. No jargon, no upselling — just honest answers.

Get in Touch