I don't kown where are you wrong,but i can do for a example:
I make a folder first, in the folder have four files:index.html,left.html,middle.html,right.html
index.html code:
<html>
<head>
<title>My new site</title>
</head>
<frameset cols="15%,70%,15%" frameborder="no" border="0" framespacing="0">
<frame src="left.html">
<frame src="middle.html">
<frame src="right.html">
</frameset>
<noframes>
<body>
</body>
</noframes></html>
left.html code:
<html>
<head><title>The left</title></head>
<body>
This is left.html
</body>
</html>
middle.html code:
<html>
<head><title>The middle</title></head>
<body>
This is middle.html
</body>
</html>
right.html code:
<html>
<head><title>The right</title></head>
<body>
This is right.html
</body>
</html>
You can save all and open index.html look it 
Last edited by dnawo : 04-24-2006 at 02:25 AM.
|