HTML - <noembed> Tag



The HTML <noembed> tag is used to handle browsers which do not support the <embed> tag. The <noembed> tag makes it easy to supply alternative content that tells users what they are missing.

This tag is no longer recommended as it is deprecated and not supported in the HTML5.

Example

Consider the following example, where we are going to use the <noembed> tag.

<!DOCTYPE html>
<html>
   <head>
      <title>HTML noembed Tag</title>
   </head>
   <body>
      <embed src="https://www.tutorialspoint.com/cg/images/logo.png" width="300" height="100">
      <noembed>
         <img src="https://www.tutorialspoint.com/cg/images/logo.png" alt="Alternative Media">
      </noembed>
      </embed>
   </body>
</html>

When we run the above code, it will generate an output consisting of the image on the webpage.

Browser Support

Advertisements