
October 12th, 1999, 02:24 AM
|
|
Guest
|
|
Posts: n/a
Time spent in forums:
Reputation Power:
|
|
|
What you see on the URL you provided isn't so difficult. The page consists of 5 frames. The one in the center of the page is the only one that is used actually. The other 4 frames point to a page with a solid background color ( green in this case ) Just put the following in your main page....:
<frameset cols="150,*,150" frameborder="NO" border="0">
<frame src="left.htm" name="left" scrolling="no" noresize>
<frameset rows="50,*,50" frameborder="NO" border="0">
<frame src="top.htm" name="top" marginwidth="0" marginheight="0" scrolling="no" noresize>
<frame src="content.htm" name="content" noresize>
<frame src="bottom.htm" name="bottom" scrolling="no" noresize>
</frameset>
<frame src="right.htm" name="right" marginwidth="0" marginheight="0" scrolling="no" noresize>
</frameset>
the above will give you the same result (every frame has a different page though).
You can change the sizes of the frames to your needs...
hope this helps
Grtz.
Faz
|