Skip navigation

Use the NOFRAMES tag to provide alternative text.

(see guidelines for overcoming access barriers)

The NOFRAMES tag should link to a non-frames version of your site or a non-frames version of the main site navigation.

Example:

Frameset showing NOFRAME tag:

Below is the code for a frameset with the following structure:

a frameset with a fixed top frame and nested frameset containing a lefthand navigation frame and right hand content frame

Code for frameset showing NOFRAME tag:


<frameset rows="20%,80%" frameborder="YES" border="0" framespacing="0">
  <frame title="banner" name="banner" noresize src="banner.htm" >
<frameset cols="15%,85%*" frameborder="YES" 
  border="0" framespacing="0" rows="*">
  <frame title="navigation" name="nav_frame" noresize src="nav.htm">
  <frame title="body" name="mainFrame" src="main.htm">
 </frameset>
</frameset>
<noframes>
<a href = "noframe.htm" title="No frames">
Click here for home page without frames</a>
</noframes>
Back to top