Home  >  Article  >  Web Front-end  >  How to use html noframes tag

How to use html noframes tag

藏色散人
藏色散人Original
2019-05-27 10:14:132694browse

html The noframes tag element can display text for browsers that do not support frames. The noframes element is located inside the frameset element. If the browser has the ability to process frames, the text in the frameset element will not be displayed.

How to use html noframes tag

#html How to use the noframes tag?

Function: The element can display text for browsers that do not support frames.

Description: The noframes element is located inside the frameset element.

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

html noframes tag usage example

<html>
<frameset cols="25%,50%,25%">
  <frame src="http://www.php.cn/example/html/frame_a.html">
  <frame src="http://www.php.cn/example/html/frame_b.html">
  <frame src="http://www.php.cn/example/html/frame_c.html">
<noframes>
<body>您的浏览器无法处理框架!</body>
</noframes>
</frameset>
</html>

The above is the detailed content of How to use html 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
Previous article:How to use html nav tagNext article:How to use html nav tag