merge frames

liunx

Guest
I have three frames <br />
1> top<br />
2> right<br />
3> left<br />
I would like to know how to merge right and left frame so that i can open a new document in the merged frame<!--content--><html><br />
<head><br />
<title>My Frames</title><br />
</head><br />
<frameset rows="10%,*"><br />
<frame src=http://www.htmlforums.com/archive/index.php/"top.html"><br />
<frame src=http://www.htmlforums.com/archive/index.php/"main.html"><br />
</frameset><br />
</html><br />
<br />
[top.html]<br />
<html><br />
<head><br />
<title>untitled</title><br />
</head><br />
<body bgcolor="green"><br />
</body><br />
</html><br />
<br />
[main.html]<br />
<frameset cols="40%,*"><br />
<frame src=http://www.htmlforums.com/archive/index.php/"pink.html"><br />
<frame src=http://www.htmlforums.com/archive/index.php/"tan.html"><br />
</frameset><br />
<br />
[pink.html]<br />
<html><br />
<head><br />
<title>untitled</title><br />
</head><br />
<body bgcolor="pink"><br />
<a href=http://www.htmlforums.com/archive/index.php/"http://www.htmlforums.com" target="_parent">HTMLforums</a><br />
</body><br />
</html><br />
<br />
[tan.html]<br />
<html><br />
<head><br />
<title>untitled</title><br />
</head><br />
<body bgcolor="tan"><br />
<a href=http://www.htmlforums.com/archive/index.php/"http://www.a1javascripts.com" target="_parent">JavaScripts</a><br />
</body><br />
</html><!--content-->
 
Back
Top