View Full Version : Help!


WolfAngel21
04-01-2003, 03:52 AM
Ok, I am trying to make a site that has frames. Ok? Ok... and I want the frames so there is a scroll bar on the left and one on the right, and the middle is the main page. I have no idea what the codes would be for this, could you please help me? Thank you so much!

Sheila
04-01-2003, 08:23 AM
<HTML><HEAD><TITLE>title</TITLE></HEAD>

<FRAMESET COLS="33%, 34%, 33%">
<FRAME SRC="left.html" NAME="left">
<FRAME SRC="middle.html" NAME="middle">
<FRAME SRC="right.html" NAME="right">
</FRAMESET>

<NOFRAMES>
Sorry, but your browser does not support frames.
</NOFRAMES>

</HTML>