Contribute on GitHub

Web Accessibility Best Practices

Tips and tricks for beginners and experts alike.

Link text should adhere to the following guidelines:

Examples

<a href="about_vp.html">About Van Pelt Library</a>

Opens in a new tab

Example 1 (title attribute)

<a href="larger_view.html" target="_blank" title="opens in a new tab">View larger image</a>
<a href="larger_view.html" target="_blank">View larger image (opens in a new tab)</a>

Linking to a PDF

Example 1 (title attribute)

<a href="annual_report.pdf" title="PDF document">Annual Report</a>
<a href="annual_report.pdf">Annual Report (PDF)</a>