Create Vertical Frameset in HTML and CSS

Description

The following code shows how to create Vertical Frameset.

Example


<!--from ww  w .ja  v a2s .  c o m-->
<!DOCTYPE HTML>
<html>
<frameset cols="25%,50%,25%">
<frame src="http://java2s.com">
<frame src="http://java2s.com">
<frame src="http://java2s.com">
</frameset>
</html>

Click to view the demo

The code above generates the following result.

Create Vertical Frameset in HTML and CSS