Open In App

HTML <noembed> Tag

Last Updated : 12 Jul, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

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

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

Syntax:

<noembed> Element </noembed>

Example: In this example we are embed an image using the <embed> tag. If the browser doesn't support embedding, the <noembed> tag displays an alternative image instead. The content is centered and styled with custom CSS.

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.geeksforgeeks.org/wp-content/uploads/20190825000042/geeks-221.png">
		<noembed>
		<img src=
"https://media.geeksforgeeks.org/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:


Similar Reads