HTML Home
HTML Tags Reference
Selected Reading
© 2011 TutorialsPoint.COM
|
HTML <noembed> tag
Function:
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.
Difference between HTML and XHTML:
NONE
Example:
<embed src="/html/yourfile.mid"
width="100%"
height="60"
loop="1">
<noembed>
Your browser does not support embed tag.
</noembed>
</embed>
|
The message inside <noembed> tag will appear only when your browser does not support <embed> tag. So based on your browser it will display following result:
Online Practice:
To Become more comfortable - Do Online Practice
|
|
|