<NOFRAMES>
The NOFRAMES tag is used to define content that should be displayed in place of
a frameset for user agents that don't support frames. The content of the NOFRAMES
tag may be anything that you would normally find in the contents of the BODY tag.
If you have a frameset defined, the NOFRAMES element should appear outside of the
frameset elements.
Attributes
Attribute |
Description |
ID |
Identifies this tag to reference in script (program code) |
CLASS |
Define the class used to render this element (defined by a style sheet) |
TITLE |
A title that is associated with the element (displayed as a tooltip in Internet Explorer) |
|
Example
<HTML>
<HEAD>
<TITLE>A frameset document with NOFRAMES</TITLE>
</HEAD>
<FRAMESET COLS="50%, 50%">
<FRAME SRC="main.html">
<FRAME SRC="table_of_contents.html">
<NOFRAMES>
<P>Here is the <A href="main-noframes.html">
non-frame based version of the document.</A>
</NOFRAMES>
</FRAMESET>
</HTML>
Compatibility
HTML 4.01
|