Key Takeaways:
- Accessibility laws apply to B2C websites with online shops, booking systems, or appointment scheduling
- Small businesses with fewer than 10 employees AND under 2 million revenue may be exempt
- Many requirements like alt texts and contrast can be implemented without programming knowledge
Web accessibility laws are now in effect across many regions. If you run an online shop, offer appointments through your website, or enable bookings, you need to act. Fines up to $100,000 are possible. Lawsuits from competitors too.
The good news: Many requirements can be implemented yourself – without developers, without a big budget. Alt texts for images, sufficient contrast, form labels. You can handle these basics in an afternoon. This article shows you if you're affected and what you specifically need to do.
Is Your Website Affected by Accessibility Laws?
Not every website falls under these laws. Three questions clarify whether you're affected:
Checklist: Am I Affected?
| Criterion | Affected | Not Affected |
|---|---|---|
| Target audience | B2C (consumers) | Pure B2B offerings |
| Functions | Online shop, booking, appointments | Pure informational site |
| Company size | 10+ employees OR 2+ million revenue | Under 10 employees AND under 2 million |
A common misconception: Even if you only have a small contact form or simple appointment booking on your website, accessibility laws may apply. What matters is the function, not the scope.
The Most Important Technical Requirements
Accessibility laws are based on the WCAG guidelines, an international standard for accessible web content. Here are the ten most important requirements:
- Keyboard accessibility: All functions must be operable without a mouse
- Visible focus: During keyboard navigation, the current element must be recognizable
- Alternative texts: Every informative image needs a description
- Contrast: At least 4.5:1 for normal text, 3:1 for large headings
- Scalability: Page must remain usable at 200% zoom
Forms and Navigation
Forms require special attention. Every input field needs a visible label that doesn't disappear during input. Placeholder texts alone are not sufficient.
Error messages must clearly state: Which field is affected? What exactly is wrong? How can the user correct the error?
Skip links at the top of the page allow users to skip navigation and go directly to the main content. This saves time for keyboard users.
Implementing the Most Important Requirements Yourself
Many accessibility issues can be fixed without programming knowledge:
Adding Alt Texts
Go through your most important pages and check if all informative images have alt texts. In WordPress, you'll find this field in the media library. Describe what's visible in the image – not just the filename.
Checking Contrast
Test your main colors with the WebAIM Contrast Checker. Often it's enough to make a color slightly darker or lighter to meet the requirement.
Enabling Focus Styles
Navigate through your website with the Tab key. If the focus is invisible, a simple CSS rule helps: *:focus { outline: 2px solid #005fcc; outline-offset: 2px; }
Free Tools for Self-Testing
Before getting external help, you can identify many issues yourself:
- WAVE Web Accessibility Evaluator: Analyzes pages for common problems
- axe DevTools: Browser extension with concrete solution suggestions
- Lighthouse (Chrome): Integrated tool with accessibility score
- Manual tests: Keyboard navigation, NVDA screen reader, 200% zoom
The Accessibility Statement
Accessibility laws require a public accessibility statement. This must contain:
- Conformance status: Fully, partially, or not conformant
- Non-accessible content: List with justification
- Feedback mechanism: Contact option for users
- Link to dispute resolution: For conflict cases
The statement should be linked in the footer of every page, typically under /accessibility.
Consequences and Opportunities
Fines up to $100,000 are possible. Competitors can sue. Associations have legal standing. The good news: Those who are visibly working on implementation have less to fear.
Accessibility is not just an obligation but also makes business sense. 10-15% of the population has disabilities. Accessible websites are often also better for SEO – clear structure and good alt texts help both goals.
Use our SEO Analyzer, which also includes basic accessibility checks.
Frequently Asked Questions
Do accessibility laws apply to my existing website or only to new projects?
Accessibility laws apply to all affected websites, regardless of creation date. Both existing and new digital offerings must meet the requirements. There was no transition period for existing sites.
What penalties are there for violations of accessibility laws?
Fines can be up to $100,000, depending on the severity of the violation. However, lawsuits from competitors or associations are more common. Reputational damage can be more severe than the financial penalty.
Do I need to hire an expert or can I implement accessibility myself?
Many basics like alt texts, contrast, and form labels can be implemented yourself. For more complex requirements like ARIA labels, skip links, or comprehensive screen reader compatibility, professional support is recommended. Start with the basics and get help when needed.