lilwvangel
10-29-2003, 11:38 PM
Ok I am making a website with frames and i was wanting to know if i have to put the html code on every page as in the index , right and left page. This is the code i am useing...
<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>
could someone please help, i've been at this for a long time, and just cant get it. Thanx Bunches :)
The code you posted above goes in the index.html page.
You can put whatever you want on the left.html and right.html pages :)
lilwvangel
11-02-2003, 03:35 AM
Ok, i made the index page and put that code into it, now do i make my left and right page, and i save them as left and right? and do i have to have that code in my left and right page, and another ? , after imake my index , left and right page, do i have to make "lets call it wvangels page" for the left frame and the right main page to go on to it?
Sheila
11-02-2003, 08:05 AM
You make the left.html and right.html using normal HTML (http://www.lissaexplains.com/html.shtml#setup). You don't put the frame code on any other page.
I'm not sure what you mean by this question: do i have to make "lets call it wvangels page" for the left frame and the right main page to go on to it
Let's say you want the links on your left side and the main page on your right. You would need to target your links so they will open up on the right side. To do that, here is an example:
<a href="http://address you want to link to" target="rightside">your link name</a>
lilwvangel
11-02-2003, 03:45 PM
OK Some of you are probrably thinking right now, she must be blonde, and truthfuly i am, cause i just can't get it, i put that last code on my left and right page and then i made my page called MY Page and when i open my page up the left or right frame is not there, could some one please explain to this blonde how to do it right. thanx!
MaGiCSuN
11-02-2003, 04:00 PM
first: what host are you using?
ok this is a bit how it works:
put this on your index.html page:
<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 put this on your left.html page:
<html>
<head>
<title>My Page</title>
</head>
<body>
text for left frame here
</body>
</html>
and replace Text for left frame here with the content you want to appear in your left frame.
then put this on your right.html page:
<html>
<head>
<title>My Page</title>
</head>
<body>
text for right frame here
</body>
</html>
and replace text for right frame here with the content that has to appear in the right frame.
Now try to view the index.html page and see if it works :)
Love,
Mirna
lilwvangel
11-02-2003, 04:16 PM
Ok Thank You . You Helped me out so much. Now on lissa's frames page it says that i have to have an index, left, right , and a page called My Page. Now when i make a page called my page, why dont' my left frame and right main page show up ? And i am useing geocities. :)
MaGiCSuN
11-03-2003, 06:33 PM
have you tried opening index.html? because that page is your page with the frame coding on it
Love,
Mirna