I tried this:
Code:
<html>
<head>
<title>Frames</title>
</head>
<frameset rows="150,*">
<frame name="topp" src="topp.html" noresize />
<frameset rows="150,*">
<frame name="bottom" src="bottom.html" noresize />
<frameset cols="30, 150, 30, 150">
<frame name="left" src="left.html" noresize />
<frame name="main" src="main.html" noresize />
<frame name="right" src="right.html" noresize />
</frameset>
</html>
And this:
Code:
<html>
<head>
<title>Frames</title>
</head>
<frameset rows="150,*">
<frame name="topp" src="topp.html" noresize />
<frameset cols="30, 150, 30, 150">
<frame name="left" src="left.html" noresize />
<frame name="main" src="main.html" noresize />
<frame name="right" src="right.html" noresize />
<frame name="bottom" src="bottom.html" noresize />
</frameset>
</html>
And also this:
Code:
<html>
<head>
<title>Frames</title>
</head>
<frameset rows="150,*">
<frame name="topp" src="topp.html" noresize />
<frameset cols="30, 150, 30">
<frame name="left" src="left.html" noresize />
<frame name="main" src="main.html" noresize />
<frame name="right" src="right.html" noresize />
</frameset>
<frameset rows="150,*">
<frame name="bottom" src="bottom.html" noresize />
</frameset>
</html>
But I can never get the final frame at the bottom. I want a similar frame at the bottom as I have on the top.