HTML Coding Example for an Accessible FrameSet

Return to <noframes> presentation.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>508 in Frame (for example only)</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<frameset cols="100,*" frameborder="NO" border="0" framespacing="0">
<frame src="frame_nav.htm" name="navigation" scrolling="NO" noresize title="navigation">
<frame src="../images.htm" name="Content" title="Content">
</frameset>
<noframes><body>
This web site uses frames. You may <a href="../../index.htm">navigate to our home page</a> and navigate the site without frames. You can upgrade your web browser if you wish to view frame web site content. <a href="www.netscape.com">Netscape upgrade</a> | <a href="www.microsoft.com">Internet Explorer upgrade</a>
</body></noframes>
</html>

Return to <noframes> presentation.