sweet_as_sugar
02-19-2003, 04:32 PM
hey I have no idea how to do frames at all!! I have 3 different webpages, lets call um web1, web2, and web3. Can u give me a step-by-step instructions on how 2 make the frames thankyou so much.
|
View Full Version : Frames plz plz plz help me!!! sweet_as_sugar 02-19-2003, 04:32 PM hey I have no idea how to do frames at all!! I have 3 different webpages, lets call um web1, web2, and web3. Can u give me a step-by-step instructions on how 2 make the frames thankyou so much. Krysta 02-19-2003, 05:36 PM http://www.lissaexplains.com/frames.shtml That there explains frames.... quite easy.. sweet_as_sugar 02-19-2003, 06:15 PM I looked at that but I still dont understand plz help! :S Sheila 02-19-2003, 06:28 PM Please note that most easy/basic/page builders do not allow frames. You usually have to use the advanced editor. Put this in index.html (Put ONLY the frame code in index.html....nothing else) <html> <head> <title>My Page</title> </head> <frameset cols=20%,80%> <frame src="left.html" name="leftside"> <frame src="right.html" name="rightside"> </frameset> <body> </body> <noframes> <a href="your main page.html">Click Here</a> </noframes> </html> Then save this as left.html <HTML> <HEAD> <TITLE>Your page title goes here</TITLE> </HEAD> <BODY> ---Everything that appears on your page will be entered here, text, images etc.--- </BODY> </HTML> Save this as right.html <HTML> <HEAD> <TITLE>Your page title goes here</TITLE> </HEAD> <BODY> ---Everything that appears on your page will be entered here, text, images etc.--- </BODY> </HTML> sweet_as_sugar 02-19-2003, 06:31 PM well I am using a website on neopets, is that able to have frames? if not can u recomend some??? plz :) Sheila 02-19-2003, 06:45 PM I don't know about Neopets, but most free host allow frames. www.geocities.com www.brinkster.com www.tripod.com www.angelfire.com (search the forum for more free hosts.) sweet_as_sugar 02-19-2003, 06:49 PM THANKS :D |