How do we add a noframe section to HTML?

王林
Release: 2023-09-03 16:17:02
forward
960 people have browsed it

How do we add a noframe section to HTML?

Add the noframe part using the tag. The HTML <noframes> tag is used to handle browsers that do not support the <frame> tag. This tag is used to display an alternate text message.

Example

<!DOCTYPE html>
<html>
   <head>
      <title>HTML noframes Tag</title>
   </head>
   <frameset cols = "200, *">
      <frame src = "/html/menu.htm" name = "menu_page" />
      <frame src = "/html/main.htm" name = "main_page" />
      <noframes>
         <body>
            Your browser does not support frames.
         </body>
      </noframes>
   </frameset>
</html>
Copy after login

The above is the detailed content of How do we add a noframe section to HTML?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
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