frames.html
<HTML>
<HEAD>
<TITLE> Our First Frameset </TITLE>
</HEAD>
<FRAMESET ROWS="50%,*">
<FRAME SRC="topframe.html">
<FRAME SRC="botframe.html">
</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>
topframe.html
<HTML>
<HEAD>
</HEAD>
<BODY>
<CENTER>This frame occupies the top 50% of the browser window.</CENTER>
</BODY>
</HTML>
botframe.html
<HTML>
<HEAD>
</HEAD>
<BODY>
<CENTER>This frame occupies the bottom 50% of the browser window.</CENTER>
</BODY>
</HTML>