HTML <frameset> Tag
Description:
The <frameset> tag is used to separate the window into frames. For example, you can have a left frame for navigation and a right frame for the main content.
Specific Attributes:
| Attribute | Definition |
| rows | Specifies the number of rows and their height in either pixels, percentages, or relative lengths. Default is 100% |
| cols | Specifies the number of columns and their width in either pixels, percentages, or relative lengths. Default is 100% |
Other Attributes:
| Attribute | Definition |
| class | Specifies a classname for an element. |
| id | Specifies a unique id for an element. |
| title | Specifies a title to associate with the element. Many browsers will display this when the cursor hovers over the element (similar to a "tool tip"). |
| style | Specifies an inline style for an element. |
Example Code:
<frameset cols="25%,*,25%">
<frame src="frame_a.htm" />
<frame src="frame_b.htm" />
<frame src="frame_c.htm" />
</frameset>