spike416aeboide
01-30-2003, 07:06 PM
hi,
sorry if this has already been posted before, but does anybody know the html to have a top, left, right, and bottom frame? please let me know, thanks!
Sheila
01-30-2003, 07:59 PM
<HTML><HEAD><TITLE>title</TITLE></HEAD>
<FRAMESET ROWS="20%, 60%, 20%">
<FRAME SRC="up.html" NAME="up">
<FRAMESET COLS="30%,70%">
<FRAME SRC="left.html" NAME="left">
<FRAME SRC="right.html" NAME="right">
</FRAMESET>
<FRAME SRC="bottom.html" NAME="bottom">
</FRAMESET>
<NOFRAMES>
Sorry, but your browser does not support frames.
</NOFRAMES>
</HTML>
-or-
<HTML><HEAD><TITLE>title</TITLE></HEAD>
<FRAMESET COLS="20%, 70%">
<FRAME SRC="left.html" NAME="left">
<FRAMESET ROWS="20%, 70%, 20%">
<FRAME SRC="up.html" NAME="up">
<FRAME SRC="middle.html" NAME="middle">
<FRAME SRC="bottom.html" NAME="bottom">
</FRAMESET>
<NOFRAMES>
Sorry, but your browser does not support frames.
</NOFRAMES>
</HTML>
Lemon Squash
01-30-2003, 08:59 PM
If you ever need more frame codes you can always go here (http://framecodes.tripod.com/code.html) its a great help!