← Back to guides

Writing Accessible Link Text

Descriptive link text that works in and out of context

Text & Links

Accessible link text clearly describes the purpose or destination of a link. It should make sense both in context and when read in isolation by a screen reader. Vague phrases like "click here" or "read more" do not convey meaning and create barriers for users navigating by links alone.

What to avoid

<a href="/pricing">Click here</a> for pricing details.
<a href="/report">Read more</a> about our annual report.
Problems with this pattern
  • Link text does not describe the destination or action.
  • Screen reader users navigating by links alone cannot tell where these links lead.
  • "Click here" assumes a mouse-based interaction and excludes keyboard and touch users.

Best practice

<a href="/pricing">View pricing details</a>
<a href="/report">Read the 2025 annual report</a>
Why this works

Link text is specific and describes where the link goes. The purpose is clear even without surrounding context. Works for screen reader users, keyboard users, and sighted users alike.

Why it matters

Screen reader users frequently navigate a page by jumping from link to link using a keyboard shortcut. When link text is vague, they have no way to know where a link leads without reading all the surrounding content — a significant time cost when there are dozens of links on a page.

Descriptive link text also benefits sighted users scanning a page quickly, and improves SEO since search engines use link text as a relevance signal.

WCAG criteria

Referenced criteria
2.4.4 Link Purpose (In Context) (opens in a new tab) - The purpose of each link can be determined from the link text alone or in combination with its context. AA
2.4.9 Link Purpose (Link Only) (opens in a new tab) - The purpose of the link can be determined from the link text alone, without needing surrounding context. AAA