<noembed>

The HTML <noembed> element, now obsolete, was used to display fallback content for browsers that couldn't support embedded media. Modern approaches use feature detection and fallback content for unsupported media.
This feature is outdated and no longer recommended for use. While some browsers may still support it, it has likely been removed from web standards, is in the process of being phased out, or is only maintained for compatibility reasons. It is best to avoid using it and update existing code where possible. Refer to the compatibility table at the bottom of the page for guidance, as this feature may stop functioning at any time.

noembed tag

The <noembed> tag in HTML was used to provide alternative content for browsers that do not support the <embed> tag. It allowed web developers to offer fallback content when embedded media or interactive content could not be displayed.

This element is outdated and no longer recommended for use, even though it may still function in some browsers. Instead, use the <object> element and include fallback content between its opening and closing tags.

Syntax

index.html
<noembed>
  Content to display when the <embed> element is not supported.
</noembed>

noembed Demo

index.html
<embed src="img.jpg" type="application/x-shockwave-flash">
<noembed>
  <p>Your browser support the embedded content.</p>
</noembed>

Key Points

  • Purpose: To provide fallback content for users whose browsers do not support the <embed> tag.
  • Deprecated: The <noembed> tag is considered obsolete in modern HTML standards. The <embed> tag is used less frequently today, as its functionality has largely been replaced by more modern approaches like <iframe> and other HTML5 elements.
  • Modern Alternative: Ensure your content is accessible and functional without relying on <embed>. Use contemporary techniques and provide alternative content or a meaningful message if the embedded content cannot be displayed.

See also

Conclusion

The <noembed> tag was used to offer alternative content for browsers that didn't support the <embed> tag, typically showing fallback content like a message or a link. However, this tag is now deprecated in modern HTML standards. As the <embed> tag has become less common, newer methods like <iframe> and other HTML5 elements are preferred for embedding content.