An IFRAME is almost like a DIV but the difference is the content in it comes from a seperate web file.

This is an xample of an IFRAME, the site www.get-hosting.net is appearing in the frame, you can change it to any url you want.

TO MAKE an IFRAME use the followin code
<iframe FRAMEBORDER="0" BORDER=0 width=200 height=400 src="url of desired openin content" name=hi style="position:absolute;left:100;top:100" scrolling=yes allowtransparency="true"></iframe>

You have to make all ur content have its own URL, for example if you had an INTRO part you have to put all your codes in a TEXT document then SAVE AS a intro.html file then upload that and put the URL in the IFARME
If you have more then one part that you would like displayed in the content [like image maps] just make all the links have TARGET="hi" Hi is the name of the IFRAME so the target="hi" code will make all links go into that IFRAME

For Xample:
Intro Outro

When you click INTRO you will see the webfile http://www.xplicit-html.net/ex/iframeintro.htm
When you click OUTRO you will see the webfile http://www.xplicit-html.net/ex/iframeoutro.htm

If you want TWO IFRAMES just copy and paste the code twice make sure they do not OVERLAP in position and chage the name to the 2nd one like to name="bye" and whatever links you want to go into the 2nd IFRAME make sure you change the TARGET to TARGET="bye"