From http://www.w3schools.com (Copyright Refsnes Data)

HTML 5 <noframes> tag


Definition and Usage

The noframes element displays text for browsers that do not handle frames. The noframes element goes inside the frameset element.

This tag is not supported in HTML 5 because it had a negative affect to the usabillity of a web page.


Differences Between HTML 4.01 and HTML 5

The <noframes> tag is not supported in HTML 5


Tips and Notes

Note: If a browser handles frames, it will not display the text in the noframes element.

Important: If you add a <noframes> tag to a frameset, you will have to enclose the text in <body></body> tags!


Example

<frameset cols = "25%, 25%,*">
  <noframes>
    <body>Your browser does not handle frames!</body>
  </noframes>
  <frame src ="venus.htm" />
  <frame src ="sun.htm" />
  <frame src ="mercur.htm" /> 
</frameset>



Try-It-Yourself Demos

How to use the <noframes> tag
This example demonstrates how to use the <noframes> tag.


From http://www.w3schools.com (Copyright Refsnes Data)