Create a Frameset with 10 pixel border in HTML and CSS

Description

The following code shows how to create a Frameset with 10 pixel border.

Example


<html>
<head>
<title>Frames example</title>
</head><!-- w  w w .j  av a 2s. c  o m-->

<frameset rows="150, *, 100" border="10">
<frame src="http://java2s.com" />
<frame src="http://java2s.com" />
<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 a Frameset with 10 pixel border in HTML and CSS