FRAME 
<FRAME
	BORDERCOLOR=color
	FRAMEBORDER=string
	HEIGHT=string
	CLASS=string
	ID=string
	LANG=string
	LANGUAGE=JAVASCRIPT | JSCRIPT | VBS | VBSCRIPT
	MARGINHEIGHT=string
	MARGINWIDTH=string
	NAME=window_name | _blank | _parent | _self | _top
	NORESIZE=NORESIZE | RESIZE
	SCROLLING=AUTO | NO | YES
	SRC=string
	TITLE=string
	WIDTH=string
	event = script
>
Specifies an individual frame within a FRAMESET . 
- 
BORDERCOLOR= 
 
- 
Sets border color. 
 
- 
FRAMEBORDER= 
 
- 
Specifies whether or not to display a border for the frame. 
 
- 
HEIGHT= 
 
- 
Along with the width attribute, specifies the size at which the element is drawn. Returns the calculated height of the element in pixels. In HTML, this attribute may be initially set in pixels or percentages. 
 
- 
CLASS= 
 
- 
Specifies the class of the tag being defined. This is most often used to associated a sub-classed style sheet with the tag. 
 
- 
ID= 
 
- 
An SGML identifier used as the target for hypertext links or for naming particular elements in associated style sheets. Valid names to script with are any alphanumeric string that begins with a letter. Valid special characters include underbar "_". 
 
- 
LANG= 
 
- 
This specifies the language to use. The specifier is an ISO standard language abbreviation. 
 
- 
LANGUAGE= 
 
- 
Specifies the language that the current script is written in. JavaScript is the default for this attribute. 
 
- 
MARGINHEIGHT= 
 
- 
Sets the amount of top and bottom margin should be set before displaying the text in a frame. 
 
- 
MARGINWIDTH= 
 
- 
Sets the amount of left and right margin should be set before displaying the text in a frame. 
 
- 
NAME= 
 
- 
Specifies the name of the frame so it may be targeted from links in other documents. 
 
- 
NORESIZE= 
 
- 
When this attribute is supplied, the frame is not resizable by the user. 
 
- 
SCROLLING= 
 
- 
Specifies that the frame can be scrolled. 
 
- 
SRC= 
 
- 
Specifies a URI for the associated file. 
 
- 
TITLE= 
 
- 
The Title attribute is used to provide advisory information. 
 
- 
WIDTH= 
 
- 
Returns the calculated width of the element in pixels. In HTML, this attribute may be initially set in pixels or percentages. 
 
- 
event 
 
- 
Can be one or more of these events: 
onafterupdate 	onbeforeupdate 
onblur 	onclick 
ondblclick 	ondragstart 
onfocus 	onkeydown 
onkeypress 	onmousedown 
onmousemove 	onmouseout 
onmouseover 	onmouseup 
onresize 	onrowenter 
onrowexit 	 
onselectstart 
 
This element is a block element. 
The start tag is required, and the end tag is optional.