HTML <noframes> Tag

❮ Previous Home Next ❯

Deprecated: Not Supported in HTML5.

Example

<frameset rows="100,*">
  <frame name="contact" src="demo/contact.html">
  <frame name="about" src="demo/about.html">
  <noframes>
    <p>Sorry, this browser does not support frames.</p>
  </noframes>
</frameset>

Meaning

The <noframes> element is used to specify alternative content to be displayed on browsers that do not support frames.

Note: In HTML 5 and later, <noframes> is obsolete and shouldn't be used, since the <frame> and <frameset> elements are also obsolete. When frames are needed at all, they should be presented using the <iframe> element.

Version: HTML 4, 4.01


Standard Syntax

<frameset>
  <frame name="text" src="URL">
  <frame name="text" src="URL">

  <noframes>
    text
  </noframes>
</frameset>



Browser Support




Status







Global Attributes

<noframes> element also supports the Global Attributes in HTML.




❮ Previous Home Next ❯