<frameset>

Description

This element is used in conjunction with the <frame> element to display multiple web page documents in a single browser window. The <frameset> tag replaces the <body> tag.

Example


<html>
    <frameset rows="33%, 33%, *" cols="33%, 33%, *">
        <frame name="frame_1" src="frame(1).html">
        <frame name="frame_2" src="frame(2).html">
        <frame name="frame_3" src="frame(3).html">
        <frame name="frame_4" src="frame(4).html">
        <frame name="frame_5" src="frame(5).html">
        <frame name="frame_6" src="frame(6).html">
        <frame name="frame_7" src="frame(7).html">
        <frame name="frame_8" src="frame(8).html">
        <frame name="frame_9" src="frame(9).html">
    </frameset>
    <noframes>Your system doesn't support frames.</noframes>
</html><!--from  w ww . j  a va  2 s. co  m-->

Click to view the demo

The code above generates the following result.

frameset




















Home »
  HTML CSS »
    HTML CSS Reference »




HTML Tag Reference
CSS Reference
CSS Selector Reference
Encoding Reference