Check this page with an assistantOpens a chat asking it to summarise this article and name the evidence behind each claim.
Claude opens with the prompt on your clipboard: Anthropic does not support prefilled prompts on the web, and we would rather copy it than ship a button that drops it.
The Same Markup, Read by Three Audiences
A screen reader, a search crawler, and an AI agent all consume structure rather than appearance. None of them can see that something looks like a heading, a button, or a caption. They can only read what the markup declares, which is why accessibility work and machine-readability work are largely the same work.
This is not a marketing analogy, it is how the technology functions. A visual user infers a heading from size and weight. A screen reader knows it is a heading because it is an h2. A crawler builds its understanding of a page's outline the same way. A div styled to look like a heading is invisible to two of those three audiences and misleading to the third.
The unusual thing about this overlap is how rarely the same team owns both. Accessibility sits with legal or design, search sits with marketing, and the shared underlying fix gets funded twice or not at all. Framing it as one project is the single most useful thing you can do with this information.
The Legal Dimension That Arrived in 2025
The European Accessibility Act has applied since 28 June 2025, extending digital accessibility obligations across a range of private-sector products and services, with 2026 the first full year of national supervision. The technical reference is EN 301 549, which incorporates WCAG at Level AA.
Scope is genuinely nuanced and this is not legal advice. Whether it applies depends on what you sell, whether you serve EU consumers, and your size, with certain microenterprise exemptions. Other jurisdictions have their own regimes with their own thresholds. The practical point is that assuming you are outside all of them because you are small has become a weaker assumption than it was, and it is worth ten minutes of proper advice rather than a guess.
One thing worth saying plainly: accessibility overlay widgets do not solve this. Scripts that promise compliance by injecting a toolbar do not fix the underlying markup, are widely rejected by the disabled users they claim to serve, and have appeared in litigation rather than preventing it. They also produce none of the search benefit, because the markup a crawler reads is unchanged.
The Four Fixes That Carry Most of the Value
Full WCAG conformance is a project. These four are not, and they deliver the bulk of both the accessibility improvement and the machine-readability improvement for a typical small site.
| Fix | Accessibility benefit | Search and agent benefit |
|---|---|---|
| Real heading hierarchy | Screen reader users navigate by heading | The page outline crawlers use, and the anchor for extractable answers |
| Meaningful alt text | Images convey their information to non-visual users | Image understanding and indexing, per image SEO |
| Descriptive link text | Links make sense read out of context in a links list | Anchor text describing the destination, per anchor text |
| Labelled form controls | Users know what each field wants | Agents can complete forms without guessing, per agentic browsers |
| Real buttons and links | Keyboard and assistive technology can operate them | Crawlable navigation and callable actions |
| Sufficient colour contrast | Readable for low-vision users | No direct search effect; a genuine usability one |
The last row is worth including precisely because it does not transfer. Contrast is an accessibility requirement with no search benefit, and pretending otherwise is the kind of overclaim that makes the rest of the argument less credible. Do it because it is correct and frequently required, not because it will move a ranking.
Alt Text, Done Properly
Alt text describes the information the image carries in this context, not the image in general. The same photograph needs different alt text on a product page and in a blog post, because it is doing a different job in each.
- Ask what the image tells the reader.
If the answer is nothing, it is decorative and should carry an empty alt attribute so assistive technology skips it. Adding keywords to a decorative image is worse than leaving it silent.
- Describe the point, not the pixels.
"Wiring diagram showing the neutral connected to terminal three" beats "diagram" and also beats a paragraph describing every line in the image.
- Do not stuff keywords.
It reads as nonsense out loud, which is how a screen reader user encounters it, and it is a documented spam pattern. The keyword you would have stuffed usually belongs in the sentence next to the image anyway.
- Put data behind charts in text.
A chart image with alt text summarising the takeaway plus a real HTML table of the numbers serves everyone, and the table is the part that can be quoted by anything reading the page.
Testing Without Buying Anything
Automated checkers catch a minority of issues and are still worth running because that minority is cheap to fix. The rest requires using the site the way someone with a different set of constraints would, which costs nothing but attention.
Three manual checks find most of what matters. Navigate a key journey using only the keyboard, and note anywhere focus disappears or you cannot reach a control. View the page with styles disabled and see whether the content still reads in a sensible order. And read your links out loud without their surrounding sentence, which surfaces every "click here" and "read more" immediately.
Combine that with a browser accessibility audit tool for the mechanical issues, and check your headings actually descend in order rather than being chosen for size. That last one is the most common finding on content sites and the easiest to fix, and it also fixes the outline that determines how well your content can be extracted, a property that now matters for snippets and generated answers.
Questions People Ask About Accessibility and SEO
- Does accessibility improve SEO?
Parts of it do, directly, and the rest does not hurt. Semantic markup, heading structure, alt text, and descriptive link text are simultaneously accessibility requirements and things search systems read to understand a page. Accessibility is not a ranking factor as such, but a large share of accessibility work produces machine-readable structure, which is what crawlers depend on.
- What is the European Accessibility Act and does it apply to me?
It is EU legislation that has applied since 28 June 2025, extending accessibility obligations to many private-sector digital products and services including ecommerce, banking, transport, and e-books. Scope depends on what you sell, where your customers are, and your size, with exemptions for some microenterprises. If you sell to EU consumers online, it is worth taking advice rather than assuming you are outside it.
- What standard do I need to meet?
The technical standard referenced in the EU context is EN 301 549, which incorporates WCAG at Level AA. In practice, targeting WCAG 2.1 Level AA is the widely used working target across jurisdictions, because most legal frameworks either reference it or reference something that maps closely to it.
- Do accessibility overlay widgets fix compliance?
No, and they have a poor track record. Overlays that claim to make a site compliant by adding a script do not remediate the underlying markup, are widely criticised by disabled users, and have featured in litigation rather than preventing it. The durable approach is fixing the HTML, which is also the part that produces the search benefit.
- Where should a small site start?
Four things cover most of the value: real heading hierarchy, meaningful alt text on images that carry information, descriptive link text instead of 'click here', and form inputs with proper labels. All four are also the things crawlers and AI agents read, so the work pays into accessibility, search, and agent usability at the same time.

