The NOFRAMES element is used to provide an alternative for
browsers that do not support frames or if the browser is
configured to not display frames.
The NOFRAMES element is inserted inside of the FRAMESET
section of the document.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN"
"_THE_LATEST_VERSION_">
<HTML>
<HEAD>
<Title>The WDVL: HTML Frames</Title>
</HEAD>
<FRAMESET rows="*,130">
<FRAME name = "main"
src = "Framestuff.html"
>
<FRAME name = "menu"
src = "/Location/Navigation/Menu.html"
marginwidth = 0
marginheight = 0
scrolling = "no"
noresize
>
<NOFRAMES>
<P>Here is the
<A href="/Authoring/HTML/Frames/Framestuff.html">
non-frame based version.</A>
</NOFRAMES>
</FRAMESET>
</HTML>