<html>
<head>
<title>My frames page</title>
</head>
<frameset rows="80%, 20%">
<frame src="top.html" />
<frame src="bottom.html" />
</frameset>
</html>
Go to HORIZONTAL FRAMES example | (Click on the BACK button to return to this page)
<html>
<head>
<title>My frames page</title>
</head>
<frameset cols="20%, 80%">
<frame src="left.html" />
<frame src="right.html" />
</frameset>
</html>
Go to VERTICAL FRAMES example | (Click on the BACK button to return to this page)
<html>
<head>
<title>My frames page</title>
</head>
<frameset cols="20%, 80%">
<frame src="lefttargetted.html" />
<frame src="right.html" name="main" />
</frameset>
</html>
The target attribute is added to the document in the left frame to direct the link to the named frame on the frameset page:
<hr />
<strong>Examples:</strong>
<hr />
<br /><br />
<p><a href="right2.html" target="main">Right Page #2</a></p><br />
<p><a href="right3.html" target="main">Right Page #3</a></p><br />
<hr />
Go to the TARGETED VERTICAL FRAMES example | (Click on the BACK button to return to this page)
<head>
<title>My frames page</title>
</head>
<frameset cols="20%, 80%">
<frame src="left.html" />
<frameset rows="80%, 20%">
<frame src="topright.html" />
<frame src="bottomright.html" />
</frameset>
</frameset>
</html>
Go to NESTED FRAMES example | (Click on the BACK button to return to this page)
More Help ---> Sharkey's Netscape Frames Tutorial