|
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> <NOFRAMES> </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="polygon.html" TARGET="main"><NOBR>[Polygon]</NOBR></A><BR><BR> <BR><BR><BR> </HTML> |