|
|||||||
![]() |
|
|
Thread Tools | Rate Thread | Display Modes |
|
|
#1 |
|
Triple-A Player
Join Date: Apr 2006
Posts: 81
|
How to make a four square frameset with HTML? (This is Killing Me!)
Is there any way to make a four square frameset with HTML! I have been trying and I just can't get it.
Thanks in advance, TheOneEyed Hobo
__________________
eMac G4: 1GHz w/768MB iBook G4:1.46GHz w/768MB PowerBook: 1.67GHz w/512MB email: reesehyde@gmail.com AIM: oneeyedhobo |
|
|
|
|
|
#2 |
|
Hall of Famer
Join Date: Aug 2005
Location: USA
Posts: 3,418
|
You will need three pages. One page will have a horizontal frames, the other two will have vertical frames. Set the 'src' of the horizontal frames to the vertical frame pages.
If you need to do this with only one page, try: Code:
<FRAMESET cols="50%,50%">
<FRAMESET rows="50%,50%">
<FRAME src="frame1.html">
<FRAME src="frame2.html">
</FRAMESET>
<FRAMESET rows="50%,50%">
<FRAME src="frame3.html">
<FRAME src="frame4.html">
</FRAMESET>
</FRAMESET>
__________________
15" MacBook Pro (Mid 2010), 2.4 GHz Core i5, 10.6.5, 4GB RAM PowerMac G4 "Quicksilver", 733 MHz, 10.4.11, 1.5GB RAM iPod Touch 5G, 32GB, iOS 6.1.3 |
|
|
|
|
|
#3 |
|
Triple-A Player
Join Date: Apr 2006
Posts: 81
|
Oh, I'm really sorry, I forgot to reply. I actually got the code, but thank you very much anyways.
Here's what I got: <frameset rows="50%,50%"> <frameset cols="50%,50%"> <frame src="frame_a.htm"> <frame src="frame_b.htm"> </frameset> <frameset cols="50%,50%"> <frame src="frame_c.htm"> <frame src="frame_d.htm"> </frameset> </frameset>
__________________
eMac G4: 1GHz w/768MB iBook G4:1.46GHz w/768MB PowerBook: 1.67GHz w/512MB email: reesehyde@gmail.com AIM: oneeyedhobo |
|
|
|
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|