Home  >  Article  >  Web Front-end  >  html: Detailed explanation of the use of noframes tag

html: Detailed explanation of the use of noframes tag

黄舟
黄舟Original
2017-06-30 10:11:271993browse

noframes tag - prompts devices that do not support frame, or related operations

noframes tags appear in pairs, starting with , > ;End

Since the body tag cannot be included in the frameset, the body tag must be included in noframes

Example

<html>

<frameset cols="25%,50%,25%">
  <frame src="frame_a.htm">
  <frame src="frame_b.htm">
  <frame src="frame_c.htm">
  <noframes>Sorry, your browser does not handle frames!</noframes>
</frameset>

</html>

Tag definition and usage instructions

HTML5 The tag is not supported. The

element displays text for browsers that do not support frames. The noframes element is inside the frameset element.

element insertion is used within the <frameset> element. </frameset>

Note: If you wish to validate pages containing frames, make sure the DTD is set to "Frameset DTD".

Tips and Notes:

Note: If the browser has the ability to handle frames, the text in the frameset element will not be displayed.

Important: If you want a frameset to add a tag, you must wrap the text within it in a tag!

Note: If you wish to validate pages containing frames, make sure the DTD is set to "Frameset DTD".

StandardAttributes

In HTML 4.01, supports the following standard attributes:

html: Detailed explanation of the use of noframes tag

EventAttributes

In HTML 4.01, the tag supports the following event attributes:

html: Detailed explanation of the use of noframes tag

The above is the detailed content of html: Detailed explanation of the use of noframes tag. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn