Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Revision 333139 of <noframes>

  • Revision slug: HTML/Element/noframes
  • Revision title: <noframes>
  • Revision id: 333139
  • Created:
  • Creator: ethertank
  • Is current revision? No
  • Comment

Revision Content

Summary

<noframes> is an HTML element which is used to supporting browsers which are not able to support {{HTMLElement("frame")}} elements or configured to do so.

You can use any HTML element inside of <noframes> which are expected to be seen inside of {{HTMLElement("body")}} element, except {{HTMLElement("frameset")}} and {{HTMLElement("frame")}} elements.

Note: Because of the fact that all mainstream browsers support frames, usage of this element is not necessary in general cases.

Attributes

Like all other HTML elements, this element supports the global attributes.

Example

<frameset cols="50%,50%">
  <frame src="https://developer.mozilla.org/en/HTML/Element/frameset" />
  <frame src="https://developer.mozilla.org/en/HTML/Element/frame" />
  <noframes><p>It seems your browser does not support frames or configured to does not so.</p></noframes>
</frameset>

See also

  • {{HTMLElement("frameset")}}
  • {{HTMLElement("frame")}}

Revision Source

<h2 id="Summary">Summary</h2>
<p><code>&lt;noframes&gt;</code> is an HTML element which is used to supporting browsers which are not able to support {{HTMLElement("frame")}} elements or configured to do so.</p>
<p>You can use any HTML element inside of <code>&lt;noframes&gt;</code> which are expected to be seen inside of {{HTMLElement("body")}} element, except {{HTMLElement("frameset")}} and {{HTMLElement("frame")}} elements.</p>
<div class="note">
  <strong>Note:</strong> Because of the fact that all mainstream browsers support frames, usage of this element is not necessary in general cases.</div>
<h2 id="Attributes">Attributes</h2>
<p>Like all other HTML elements, this element supports the <a href="/en-US/HTML/Global_attributes" title="HTML/Global attributes">global attributes</a>.</p>
<h2 id="Example">Example</h2>
<pre class="brush:html">
&lt;frameset cols="50%,50%"&gt;
  &lt;frame src="https://developer.mozilla.org/en/HTML/Element/frameset" /&gt;
  &lt;frame src="https://developer.mozilla.org/en/HTML/Element/frame" /&gt;
  &lt;noframes&gt;&lt;p&gt;It seems your browser does not support frames or configured to does not so.&lt;/p&gt;&lt;/noframes&gt;
&lt;/frameset&gt;</pre>
<h2 id="See_also">See also</h2>
<ul>
  <li>{{HTMLElement("frameset")}}</li>
  <li>{{HTMLElement("frame")}}</li>
</ul>
Revert to this revision