NOTE: Because your web browser does not support web standards, you will only be able to view the content in a linearized format. To use this site to it's fullest, you may wish to upgrade to a browser that supports web standards.

Additional Resources

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.

Priority 1 Item 18
Provide a method that permits users to skip lists of links repeated on every page in a site, such as navigation links.

  1. Provide "skip to content text" that links to an anchor tag located past your common navigation menus.
  2. Create a transparent gif and link it to an anchor tag located past your common navigation menus.

The HTML
<a href="#navskip">Skip Navigation Links</a>
...
<a name="navskip"></a><h1> The main content...</h1>

Image link to the main content

The HTML
<a href="#navskip"><img src="blank.gif" alt="skip to main content"></a>
...
<a name="navskip"></a><h1> The main content...</h1>