View Full Version : Frames not appearing


Kenny
05-02-2003, 05:47 AM
How come when i type in my uri http://www10.brinkster.com/kenikov/index.html the frames don't appear? I am thinking it's because of the: <a href="your main page.html">Click Here</a>

What am I suppose to put between the quotes? Just index.html or my whole address?

When it means main page does it mean first? Because I have a first page that comes up leading to my main (index) page.

epolady
05-02-2003, 06:13 AM
Remove the <BODY> at the top..

<html>
<head>
<title>kenikov homepage</title>
</head>
<frameset cols=20%,80%>
<frame src="left.html" name="leftside">
<frame src="right.html" name="rightside">
</frameset>
<body>
<noframes>
<a href="http://www10.brinkster.com/kenikov/index.html">Click Here</a>
</noframes>
</body>
</HTML>