Since June 28, 2025, the European Accessibility Act makes accessibility mandatory for many commercial European sites. In 2026, compliance is no longer optional.
Who's concerned?
- E-commerce sites
- Online banking services
- Transport and ticketing platforms
- Public services (already covered by RGAA in France)
Small businesses (< 10 employees and < €2M revenue) are exempt, but nothing stops them from being accessible.
The standards
- WCAG 2.2: international standard (3 levels: A, AA, AAA). Target = AA.
- EN 301 549: European harmonized standard.
- RGAA 4.1: French public-sector implementation.
The 10 rules covering 80% of cases
- All images have a relevant
alt(oralt=""if decorative) - Colors meet a contrast ratio of 4.5:1 minimum (AA)
- The whole site is keyboard-navigable (Tab, Enter, Space, arrows)
- Focus is visible (clear outline on interactive elements)
- Forms have explicit labels and descriptive errors
- Heading hierarchy is clean (single H1, then H2, H3…)
- Links and buttons have clear labels (no "click here")
- Videos have captions and/or transcription
- The site works without JavaScript for critical content
- Animations can be disabled (
prefers-reduced-motion)
Tools to audit
- axe DevTools (Chrome/Firefox extension): quick and precise scan
- WAVE (WebAIM): visual report on the page
- Lighthouse Accessibility tab: included in Chrome DevTools
- VoiceOver (Mac) / NVDA (Windows): real testing with a screen reader
Dev best practices
- Use proper semantic tags (
<nav>,<main>,<article>,<button>over<div>) - Respect DOM order (no CSS
ordertricks breaking logic) - Test with keyboard regularly, not just before launch
- Write automated a11y tests (jest-axe, Playwright)
Legal sanctions
A non-compliant site may face:
- Administrative sanction up to €25,000 (France, DGCCRF)
- Summary legal action to force compliance
- Reputation damage (public report)
The accessibility statement
Mandatory for all sites concerned: a public document (dedicated page) stating:
- The compliance level achieved
- Non-compliant content and exemptions
- A contact to report an accessibility issue
- Recourse with the Defender of Rights
Conclusion
Accessibility isn't a luxury — it's a quality and legal standard. An accessible site also ranks better (Google favors accessible sites) and converts more (improved UX for everyone).
Need an accessibility audit? Contact us.