Create Nested Frameset in HTML and CSS

Description

The following code shows how to create Nested Frameset.

Example


<!--from w w w  . ja  v  a2 s  .  c  om-->
<!DOCTYPE HTML>
<html>
<frameset rows="50%,50%">
<frame src="http://java2s.com">
<frameset cols="25%,75%">
<frame src="http://java2s.com">
<frame src="http://java2s.com">
</frameset>
</frameset>
</html>

Click to view the demo

The code above generates the following result.

Create Nested Frameset in HTML and CSS