Multiple Frames
How do I have multiple frames?
You may have seen web pages that use multiple sections or
frames. This can be done by nesting your FRAMESET tags. You will first need to decide
where to break the page up, whether vertically or horizontally. To make a horizontally
framed page that looks like this,
you might code your Frame Document like this:
<FRAMESET ROWS="50%, 50%">
<FRAMESET COLS="70%, 30%">
<FRAME SRC="north.html" NAME="north">
<FRAME SRC="east.html" NAME="east">
</FRAMESET>
<FRAMESET COLS="40%, 60%">
<FRAME SRC="west.html" NAME="west">
<FRAME SRC="south.html" NAME="south">
</FRAMESET>
</FRAMESET>
INTRO
| LAYOUT | TARGETING |
MULTIPLE | NO FRAMES
|