There is an alternative to the <BODY> </BODY> tags for determining content for your web page.  You may use the <FRAMESET> </FRAMESET> tags to divide you browser window into smaller regions called FRAMES.

Below is an example of how the browser can be divided into frames.
<HTML>
<HEAD>
<TITLE>Two Frames</TITLE>
</HEAD>

<FRAMESET COLS="30%,*" frameborder="0">
  <FRAME SRC="demoOptions.html" NAME="demoOptions" NORESIZE SCROLLING = AUTO>
  <FRAME SRC="imageMap.html" NAME="main" NORESIZE SCROLLING = AUTO>

  <NOFRAMES>
    The browser can not display frames. :-(
  </NOFRAMES>
</FRAMESET>

</HTML>
The content of a frame must direct the links to a specific target. The targets are the frame names or special target names that direct the content special locations. For example, some of the demoOptions.html code is given below. The last target _top directs the content to the window containing all of the frames.

<HTML>
<HEAD>
<TITLE>demoOptions.html</TITLE>
</HEAD>
<BODY>

<A HREF="imageMap.html" TARGET="main"><NOBR>[Image Map]</NOBR></A>
<BR><BR><BR> <A HREF="rectangle.html" TARGET="main"><NOBR>[Rectangle]</NOBR></A><BR><BR>
<A HREF="circle.html" TARGET="main"><NOBR>[Circle]</NOBR></A><BR><BR>
<A HREF="polygon.html" TARGET="main"><NOBR>[Polygon]</NOBR></A><BR><BR>
<A HREF="default.html" TARGET="main"><NOBR>[Default]</NOBR></A><BR><BR>
<BR><BR><BR>
<A HREF="../cs101.htm.html" TARGET="_top"><NOBR>[Web Design]</NOBR></A>

</BODY>
</HTML>