Create Horizontal Frameset in HTML and CSS

Description

The following code shows how to create Horizontal Frameset.

Example


<!DOCTYPE HTML>
<html>
<frameset rows="25%,50%,25%">
<frame src="http://java2s.com">
<frame src="http://java2s.com>
<frame src="http://java2s.com">
</frameset>
</html><!--from   w  ww.j  av  a 2  s . co m-->

Click to view the demo

The code above generates the following result.

Create Horizontal Frameset in HTML and CSS