|
Q2033 How do I support non-frame browsers?
irt.org | Knowledge Base | HTML | Q2033 [ previous next ]
Q2033 How do I support non-frame browsers?
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>
|
|
|
Copyright © 1996-2008 irt.org, All Rights Reserved.