| Section
508 (i) W3C Guidelines 1.1 &12.1 This guide is derived from the book
Understanding Accessibility, Published by HiSoftware Publishing...
The Entire book can be viewed online in accessible HTML Help format.
- All Frame Elements are required to contain
the title attribute
- All Frameset Elements are required to contain
the noframes element
- All Frame Elements are
required to contain the title attribute
- All Frameset Elements are
required to contain the noframes element
1. All Frame Elements are
required to contain the title attribute
Example one demonstrates how to use FRAME title
attributes.
The current HTML does not implement the title
attribute
<FRAMESET
cols="40%,60%">
<FRAME src="left_frame.htm">
<FRAME src="right_frame.htm" >
</FRAMESET>
The corrected HTML implements the title
attribute
<FRAMESET
cols="40%,60%"
title="Our product line">
<FRAME src="left_frame.htm"
title="Frame Left:
Navigating our web">
<FRAME src="right_frame.htm"
title="Frame Body: Body text">
</FRAMESET>
top
2. All Frameset Elements are
required to contain the noframes element
Example two demonstrates how to use the NOFARMES
element.
The current HTML does not implement the NOFRAMES
element.
<FRAMESET
cols="40%,60%"
title="Our product line">
<FRAME src="left_frame.htm">
<FRAME src="right_frame.htm" >
</FRAMESET>
The corrected HTML implements the NOFRAMES
element.
<FRAMESET
cols="40%,60%"
title="Our product line">
<FRAME src="left_frame.htm">
<FRAME src="right_frame.htm" >
<NOFRAMES>
This page uses frames, but your
Search engine or Web browser may not
support them.
<A href="products.html" title="Products link">
Select here to go to the
products page</A>
</NOFRAMES>
</FRAMESET>
The below corrected HTML makes the Frameset
completely accessible.
<FRAMESET
cols="40%,60%"
title="Our product line">
<FRAME src="left_frame.htm"
title="Frame Left:
Navigating our web">
<FRAME src="right_frame.htm"
title="Frame Body: Body text">
<NOFRAMES>
This page uses frames, but your
Search engine or Web browser may not
support them.
<A href="products.html"
title="Products link">
Select here to go to the
products page</A>
</NOFRAMES>
</FRAMESET>
top
Printer Friendly Version...
|