Creating Frames
The following HTML will create a frameset page (named frameset.html)
which will create a frames Web page consisting of two columns. Comments
regarding the HTML are enclosed in the comment tags
< !--comment-->.
< HTML>
< HEAD>
<
TITLE>No-Frames</TITLE>
< /HEAD>
<
FRAMESET COLS="230, *">
< !--Use a percentage
or the number of pixels for the width of the frame. Use '*' for
the remaining space.-->
<
FRAME NAME="navigation frame" SRC="nav.html">
< !--Choose
a label for the left frame so it can be referred to by other frames
or windows later.-->
<
FRAME NAME="content" SRC="content.html">
<!--Choose
a label for the right frame.-->
<
NOFRAMES>
Your browser does not support frames. Go to the <A HREF="noframes.html"> no
frames </A> version.
<
/NOFRAMES>
< !--The <NOFRAMES> tag sets a section of an
HTML document to be visible to nonframed browsers, but not visible
to framed browsers.-->
< /FRAMESET>
</HTML>