You are here: irt.org | FAQ | HTML | Q2033 [ previous next ]
So you've decided to use frames?
The next thing you should decide, is to also support those users, who does not support frames.
The NOFRAMES
element specifies content, that should be
displayed only when frames are not being
displayed. NOFRAMES
can be used in the
FRAMESET
section of a frameset document.
Consider the following example:
<HTML> <HEAD> <TITLE>A very nice HTML document</TITLE> </HEAD> <FRAMESET cols="50%, 50%"> <FRAME src="menu.htm" title="Menu"> <FRAME src="content.htm" title="Content"> <NOFRAMES> <P>Here is the <A HREF="main.htm">non-frame based version of this document</A> </NOFRAMES> </FRAMESET> </HTML>