UNSUPPORTED
in HTML5
Tag Description
The noframes tag is used for browsers that do not handle frames.
This tag has the form:
<noframes>
</noframes>
The <noframes>
element must appear within the frameset element.
HTML5 and HTML4.01 Differences
Not supported in HTML5.
Global Attributes
Attribute | Value | Description |
---|---|---|
class | classname | Sets the classname of the element |
dir | rtl
ltr |
Sets the text direction for the content of the element |
id | id | Sets a unique id for the element |
lang | lang_code | Sets the language code for the content of the element |
style | style_def | Sets the inline style of the element |
title | text | Sets extra information about the element |
xml:lang | lang_code | Sets the language code for the content of the element in XHTML documents |
Event Attributes
Attribute | Value | Description |
---|---|---|
onclick | script | Executes script on a mouse click |
ondblclick | script | Executes script on a mouse double-click |
onkeydown | script | Executes script when a key is pressed |
onkeypress | script | Executes script when a key is pressed and released |
onkeyup | script | Executes script when a key is released |
onmousedown | script | Executes script when a mouse button is pressed |
onmousemove | script | Executes script when the mouse cursor moves |
onmouseout | script | Executes script when the mouse cursor moves out of the element |
onmouseover | script | Executes script when the mouse cursor moves over the element |
onmouseup | script | Executes script when a mouse button is released |
Examples
The following example shows the basic use of this tag:
<html>
<frameset cols="30%,70%">
<frame src="left_frame.htm" />
<frame src="right_frame.htm" />
<noframes>
Frames not supported
</noframes>
</frameset>
</html>
Browser Support
Chrome | Firefox | IE | Safari | Opera |
---|---|---|---|---|
Doctype Declaration Support
The following table lists the doctype declarations this element may appear in:
HTML4.01 / XHTML1.0 | XHTML 1.1 | HTML 5 | ||
---|---|---|---|---|
Traditional | Strict | Frameset | ||
Miscellaneous Information
Defined In: | HTML4.01 |
---|---|
Empty Tag: | No |