Open In App

HTML | <noframes> Tag

Last Updated : 22 Aug, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The <noframes> tag is the backup for those browsers that does not support frames. This tag can contains all the element that can be placed in <body> tag. It is used to create link with the non-frame set version of any website where you want to display a message to the user. This <noframes> tag is not supported in HTML5. Syntax:
<noframes> Statement for the user </noframes>
Note: <noframes> tag placed inside of <frameset> tag. Below example illustrate the <noframes> tag: Example: html
<html>

<head>
    <title>noframes tag</title>
    <style>
        frame {
            text-align: center;
        }
    </style>
</head>

<!-- frameset attribute starts here -->
<frameset cols="30%, 40%, 30%">
    <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>
<!-- frameset attribute ends here -->

</html>
Output:
  • If browsers supported:
  • If browsers does not supported:
  • Supported Browsers: The browsers supported by HTML <noframes> tag are listed below:
    • Google Chrome
    • Internet Explorer
    • Firefox
    • Safari
    • Opera

    Similar Reads