Nested Frames

Nested framesets are framesets within a frameset. Each frameset must have its own opening and closing frameset tags.
The blue frameset displays the top or logo file in a frameset.
The red frameset displays the two files for the menu and main page.The borders set to zero gives the appearance of one page.

<html><head><title>Nested Framesets</title></head>

<frameset frameborder="1" rows="15%,*" border="0">
<frame name="top" src="topdog.html" target="top" scrolling="auto">

<frameset cols="50%, *">
<frame name="menu" src="maindogs.html" target="leftside" scrolling="no">
<frame name="rightside" src="dogs.html" target="rightside" scrolling="yes">

</frameset>
</frameset></html>
Nested Frames Example

Noframes

Some provision should be made for browsers that can not read framesets.
The tag <noframes> will solve the problem.

<noframes>
<body>
<p>This page requires Frameset</p>
Link a non-frame page here! </body>
</noframes>
</html>