View Full Version : plz help


lilwvangel
05-26-2003, 04:58 PM
OK i am new at this , and i just can't get the frames part figured out so if any one could help i would appreciate it. Ok on my index page i put this ....


<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="html://www.geocities.com/kristypack/mainpage.html">Click Here</a>
</noframes>
</html>




am i suppose to add my link in there to my main page? But when i go to www.geocities.com/kristypack
it comes up as cannot find page. If someone could tell me what i am doing wrong, then i would appreciate it. Thanx.

amicus
05-26-2003, 05:49 PM
create 2 more files can call them 'left.html' and 'right.html' put it into the same directory. i think those to pages are missing. and here's a correction to the code below. the 'body' tags goes inside the 'noframes' tag.

<html>
<head>
<title>My Page</title>
</head>

<frameset cols="20%,80%">
<frame src="left.html" name="leftside">
<frame src="right.html" name="rightside">
</frameset>
<noframes>
<body>
<a href="html://www.geocities.com/kristypack/mainpage.html">Click Here</a>
</body>
</noframes>
</html>

lilwvangel
05-26-2003, 08:10 PM
Thanx for your help. I will make the 2 other pages.