Entry
How do I get 5 frames or more on my website, would you beable to give me the html code?
May 23rd, 2001 09:28
Ben Gordon, Jenni Ford, http://pageresource.com/html/frame1.htm
Since I wasn't sure how you were trying to set these 5 frames up the 2
following sets of code will produce 5 frames one will produce vertical
frames the other horizontal frames.. I hope one of the 2 is what you
wanted.
<HTML>
<HEAD>
<TITLE>My Frames Page</TITLE>
</HEAD>
<FRAMESET cols="20%,20%,20%,20%,20%">
<FRAME SRC="page1.htm">
<FRAME SRC="page2.htm">
<FRAME SRC="page3.htm">
<FRAME SRC="page4.htm">
<FRAME SRC="page5.htm">
</FRAMESET>
</HTML>
or
<HTML>
<HEAD>
<TITLE>My Other Frames Page</TITLE>
</HEAD>
<FRAMESET rows="20%,20%,20%,20%,20%">
<FRAME SRC="page1.htm">
<FRAME SRC="page2.htm">
<FRAME SRC="page3.htm">
<FRAME SRC="page4.htm">
<FRAME SRC="page5.htm">
</FRAMESET>
</HTML>