Create Nested frames in HTML and CSS

Description

The following code shows how to create Nested frames.

Example


<html>
<head>
<title>Frames example</title>
</head><!--  www  . j a  v  a2s.c om-->

<frameset rows="*, 300, *">
<frame src="http://java2s.com" />

<frameset cols="*, 400, *">
<frame src="http://java2s.com" />
<frame src="http://java2s.com" />
<frame src="http://java2s.com" />
</frameset>

<frame src="http://java2s.com" />

<noframes><body>This site makes uses of a technology called frames. Unfortunately
the browser you are using does not support this technology. We recommend that
you update your browser. We apologize for any inconvenience this causes.
</body></noframes>

</frameset>

</html>

Click to view the demo

The code above generates the following result.

Create Nested frames in HTML and CSS