squeekyclean
09-01-2004, 03:58 AM
I am making a new layout to a old site, i dont like the current on.. But I Just have a question, how would I make one with frames like that has one frame at the top all the way across, then a second row, where on the left it has one frame, but on the right two, stacked ontop of the other, and one final frame that goes across the bottom.
something like this...
<html>
<frameset rows="100,*,100">
<frame src="toppage.html" name="top">
<frameset cols="200,*">
<frame src="midleftpage.html" name="midleft">
<frameset rows="50%,50%">
<frame src="midrighttop.html" name="midrighttop">
<frame src="midrightbottom.html" name="midrightbottom">
</frameset>
</frameset>
<frame src="bottompage.html" name="bottom">
</frameset>
</html>