HTML | <noembed> Tag

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=
"https://media.w3wiki.net/wp-content/uploads/20190825000042/Beginner-221.png">
        <noembed>
          <img src=
"https://media.w3wiki.net/wp-content/uploads/20190821123122/gfgsm.png"
               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

Contact Us