[html] Question apon frameset.

Joined
Jun 4, 2005
Messages
1,656
Reaction score
13
I have a frameset, and i wondering if its possible to do this as a website (what's displayed on the image).

Not in any particular size or anything, but something like what's displayed.

Suicide - [html] Question apon frameset. - RaGEZONE Forums


and if you get it coded out, may i have a look at the source code please.

Thanks in advance.
 
something like this?

Code:
<frameset rows="90%,10%">

  <frameset cols="10%,90%">
    
	<frameset rows = "10%, 90%">

		<frame src = "frame1.html" name = "frame1">
		<frame src = "frame2.html" name = "frame2">

	</frameset>

	<frame src = "frame3.html" name = "frame3">

  </frameset>

<frame src = "frame4.html" name = "frame4">

</frameset>
 
Framesets are even worse than tables :P. You can make dynamic content without reloading everything with AJAX too ;)
 
Back