Code for a Nested Frameset

index.html

<HTML>
<HEAD>
<TITLE> A Nested Frameset </TITLE>
</HEAD>

<FRAMESET COLS="50,*">
  <FRAME SRC="menu.html">
  <FRAMESET ROWS="30,*">
    <FRAME SRC="title.html">
    <FRAME SRC="body.html">
  </FRAMESET>
</FRAMESET>

<NOFRAMES>
<P>Sorry, but it appears you are using a Web browser that does not support frames. Click <A HREF="noframes/index.html">here</A> to access the non-frames version of our site.</P>
</NOFRAMES>

</HTML>

menu.html

<HTML>
<HEAD>
</HEAD>
<BODY>
<CENTER>Menu</CENTER>
</BODY>
</HTML>

etc.

Copyright © 1998 Sausage Software and Kevin Yank.
All Rights Reserved.