sweet_as_sugar
02-16-2003, 07:54 PM
I am so stuck on how to make frames, I know you need an index page, so all together do you need 3 pages an index page a left side page and a right side page? I type all the codes in but all I get up is a link to a page and NO frames plz plz can you give me a step by step instructions (plz dumb it down because I am thick!!) Please Please help me
Luv
Beth
xXx
Lemon Squash
02-16-2003, 09:01 PM
First pick the number of frames you want, you can go here (http://framecodes.tripod.com/code.html) and click the two - four, five + buttons and look for the frame you want and it will give you the code for the frameset you clicked.
Now make an index.html and copy and paste the code you got.
Then depending on how many frames you want and have the code for you make the pages to go in them frames.
Example:
<HTML><HEAD><TITLE>title</TITLE></HEAD>
<FRAMESET COLS="30%,70%">
<FRAME SRC="left.html" NAME="left">
<FRAME SRC="right.html" NAME="right">
</FRAMESET>
<NOFRAMES>
Sorry, but your browser does not support frames.
</NOFRAMES>
</HTML>
This is the code for a left frame and a right frame (code above), you would need to make a left.html and a right.html just like a normal page and they would show up in the frames.. if you do it right.
Remember the to only put the frame code in the index.html not the following pages, the other pages are made just like you would a normal page.
- hope this helps -