Media Plug in HTML
Media Plug in HTML
❮ PreviousNext ❯
Plug-ins are computer programs that extend the standard functionality of the
browser.
Plug-ins
Plug-ins were designed to be used for many different purposes:
Warning !
The support for Shockwave Flash has also been turned off in modern browsers.
It was designed to embed plug-ins (like Java applets, PDF readers, and Flash
Players) in web pages, but can also be used to include HTML in HTML:
Example
<object width="100%" height="500px" data="snippet.html"></object>
Try it Yourself »
Example
<object data="audi.jpeg"></object>
Try it Yourself »
ADVERTISEMENT
Web browsers have supported the <embed> element for a long time. However,
it has not been a part of the HTML specification before HTML5.
Example
<embed src="audi.jpeg">
Try it Yourself »
Note that the <embed> element does not have a closing tag. It can not contain
alternative text.
Example
<embed width="100%" height="500px" src="snippet.html">