Open In App

HTML | <noframes> Tag

Improve
Improve
Like Article
Like
Save
Share
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>
  
<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

    Last Updated : 22 Aug, 2019
    Like Article
    Save Article
    Previous
    Next
    Share your thoughts in the comments
    Similar Reads