Home > Web Front-end > HTML Tutorial > What does the noframes tag mean?

What does the noframes tag mean?

云罗郡主
Release: 2019-02-15 11:06:06
Original
4075 people have browsed it

What does the

noframes tag mean? The

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

html noframes tag Syntax

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 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>
Copy after login


The above is the detailed content of What does the noframes tag mean?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template