Skip to main content
All guides
Serious 2.4.4 Link Purpose / 4.1.2 Name, Role, Value · Level A

Give links a discernible name (WCAG 2.4.4)

Every link must expose text that describes where it goes — including icon-only links, which need an accessible label.

Why it matters

Screen-reader users often navigate by pulling up a list of links. "Click here" ten times, or an unlabeled icon, gives them nothing to act on.

How to fix it

Use descriptive link text. For icon-only links, add visually-hidden text or an aria-label.

<!-- Fails: no text -->
<a href="/cart"><i class="icon-cart"></i></a>

<!-- Passes -->
<a href="/cart" aria-label="View cart"><i class="icon-cart"></i></a>

Does your site have this issue?

Run a free scan to find out in seconds.

Related guides

These guides cover automated checks (~30–40% of WCAG criteria). A full audit also needs manual review.