Frame definition  - <FRAMESET>   -  </FRAMESET>

Previous- FRAME - Frame  |  Next-H1 - Heading Font 1

Description
Defines the organisation of Frames within a page. Used with the FRAME element to create a series of interlinked frames on the browser. The FRAMESET element mustbe the first element after the <HEAD> section. Either a <NOFRAMES> or a <BODY> element should be included after the <FRAMESET> is defined, to define what broswers without support for frames will display. In fact some browsers require this to be defined before the closing </FRAMESET> tag. Do not use both a <BODY> and a <NOFRAMES> tag in the same document.
Attributes
NameValuesDescription
bordernumber
bordercolorcolor
classclassnameClass of the element which is used to associate the element with a style sheet.
colsnumber
event_namescript_codeDefines script to run on event such as OnMouseOver
frameborderno|yes|0|1
framespacingnumber
idstringA unique name to identify an element.
langlanguage_typeThe ISO description for the language of the element.
languagejavascript|jscript|vbscript|vbs
rowsnumber
stylestringSpecifies style information for the element.
titlestringTitle for element which is often displayed as a tool-tip when the cursor hovers over the element.

Example
<html><head></head>
<frameset>
<frame>
<frame>
<noframes>
old browser users will see this.
</noframes>
</frameset>
</html>
This example can not be displayed.
Compatability
HTMLNETSCAPEINTERNET EXPLORER
4.1N2N3N4N6IE3IE4IE5IE6
YES YES YES YES NO YES YES NO NO

Previous- FRAME - Frame  |  Next-H1 - Heading Font 1