The NOFRAMES Tag

The NOFRAMES container tag allows you to include HTML content as part of your frameset document. This way, people using browsers that don't support frames can still see content on your website. Otherwise, they'd see nothing but a blank page.

Typically, the NOFRAMES tag follows the FRAMESET. Here's an example:

<FRAMESET COLS="175,*">
	<FRAME SRC="leftmenu.html">
	<FRAME SRC="mainpage.html">
</FRAMESET>
<NOFRAMES><P>I'm sorry, your browser doesn't support frames. 
Please visit our non-frames page instead.</P>
</NOFRAMES>

<<-------- p r e v // a i w e b // n e x t -------->>