Identical links have the same purpose

Links to the same destination have consistent text across the page.

On this page

Impact

ScanGov impact ratings

About

Links with the same destination should have the same description, to help users understand the link's purpose and decide whether to follow it.

Risks

Screen reader users cannot distinguish links going to different places.

Why it's important

Improves the experience for assistive technology users by ensuring content structure is clear and consistent.

User stories

As an assistive technology user, I want content to be properly structured so that I can navigate and understand the page.

Code

Failing pattern:

<!-- Fail: same text, different destinations -->
<a href="/report-2023">Read more</a>
<a href="/report-2024">Read more</a>

Passing pattern:

<!-- Pass: descriptive, unique link text -->
<a href="/report-2023">Read the 2023 annual report</a>
<a href="/report-2024">Read the 2024 annual report</a>

Error

ScanGov messaging when a site fails a standard:

Failed: Identical links have the same purpose

Guidance

Indicators

On this page