Open In App

HTML | <noembed> Tag

Last Updated : 31 May, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The <noembed> tag is used to show that the browsers is not supported by <embed> tag. This <noembed> tag will inform the user what is missing in the users browsers. 

Note: <noembed> tag is not supported in html5.

Syntax:

<noembed> Element </noembed>

Example: 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>embed Tag</title>
    <style>
        q {
            color: #00cc00;
            font-style: italic;
        }
    </style>
</head>
 
<body>
    <center>
        <br>
        <embed src=
        <noembed>
          <img src=
               alt="Alternative Media">
      </noembed>
        </embed>
    </center>
</body>
 
</html>


Output:

  • IF browsers supported by <embed>:
  • IF browsers not supported by <embed> then <noembed> activate:

Supported Browsers: The browser supported by <noembed> tag are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Safari
  • Opera

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads