Provide a method that permits users to skip lists of links repeated on every page in a site, such as navigation links.
There are two popular ways to create skip links:
Using "skip to content text" to link to the main content.
<a href="#navskip">Skip Navigation Links</a> ... <a name="navskip"></a><h1> The main content...</h1>
Using a transparent image to link to the main content.
<a href="#navskip"><img src="transparent.gif" alt="skip to main content"></a> ... <a name="navskip"></a><h1> The main content...</h1>
Grouping and bypassing links - WAI recommended technique.
View WAI Checkpoint 13.6 - Group related links, identify the group (for user agents), and, until user agents do so, provide a way to bypass the group.