HTML HTML Tutorial HTML Forms HTML Graphics HTML Media HTML APIs HTML Tags



HTML Tag: noframes

The <noframes> tag is an HTML tag that is used to provide an alternative content for browsers that do not support frames. The <noframes> tag is used within the <frameset> tag and is used to provide content that will be displayed to users who are using browsers that do not support frames.

The <noframes> tag is used to provide an alternative content for browsers that do not support frames. The <noframes> tag is used within the <frameset> tag and is used to provide content that will be displayed to users who are using browsers that do not support frames.

The <noframes> tag is used to provide a fallback content for browsers that do not support frames. This content is displayed to users who are using browsers that do not support frames. The content that is provided within the <noframes> tag should be a complete HTML document that can be displayed to users who are using browsers that do not support frames.

The <noframes> tag is used to provide a fallback content for search engines. Search engines do not support frames and therefore cannot index the content that is displayed within frames. By providing a fallback content within the <noframes> tag, search engines can index the content that is displayed within the <noframes> tag.

Example 1:

  <frameset cols="25%,75%">
    <frame src="menu.html">
    <frame src="content.html">
    <noframes>
      <p>This page requires a browser that supports frames.</p>
    </noframes>
  </frameset>

Example 2:

  <frameset rows="50%,50%">
    <frame src="top.html">
    <frame src="bottom.html">
    <noframes>
      <p>This page requires a browser that supports frames.</p>
    </noframes>
  </frameset>

Activity