Copyright © tutorialspoint.com
The HTML <frameset> tag is used to divide the window into frames.
NONE
<frameset cols="200, *">
<frame src="/html/menu.htm" name="menu_page" />
<frame src="/html/main.htm" name="main_page" />
</frameset>
|
To Become more comfortable - Do Online Practice
| Attribute | Value | Description |
|---|---|---|
| cols | column size | Specifies the number of columns and their width in either pixels, percentages, or relative lengths. Default is 100% |
| rows | row size | Specifies the number of rows and their height in either pixels, percentages, or relative lengths. Default is 100% |
| Attribute | Description |
|---|---|
| class | Document wide identifier |
| id | Document wide identifier |
| title | Specifies a title to associate with the element. |
| style | Helps to include inline casecadubf style sheet. |
| lang | Sets the language code. |
| Attribute | Description |
|---|---|
| onload | Script runs when framset is loaded |
| onunload | Script runs when framset is unloaded |
Copyright © tutorialspoint.com