what is wrong with this code?!

liunx

Guest
Hi,<br />
<br />
I'm trying to put together a frame set-up for a site. I want the top row to be a frame and below it, two columns (menu and main pages). <br />
<br />
When I try the code below in an index.html, only the top frame shows. All pages have been checked and appear fine on their own, but not in the frame code below.<br />
<br />
Help!<br />
<br />
<html><head><title>page title</title></head><br />
<frameset rows="694,*" frameborder=no border=0> <br />
<br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"top.html" name="top" scrolling=no marginheight=0 marginwidth=0><br />
<br />
<frameset cols="140,*" frameborder=no border=no><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"menu.html"><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"main.html" name="main"><br />
<br />
</frameset> </frameset><br />
</body></html><!--content-->
 
Back
Top