Loading lesson path
Formula
Plug - ins are computer programs that extend the standard functionality of the browser.Formula
Plug - ins were designed to be used for many different purposes:Warning !
Formula
Most browsers no longer support Java Applets and Plug - ins.ActiveX controls are no longer supported in any browsers. The support for Shockwave Flash has also been turned off in modern browsers.
Formula
The < object > Element<object> element is supported by all browsers.
<object> element defines an embedded object within an HTML document. 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:
<object width="100%" height="500px" data="snippet.html"></object>
<object data="audi.jpeg"></object>
Formula
The < embed > Element<embed> element is supported in all major browsers.
<embed> element also defines an embedded object within an HTML document.
Formula
Web browsers have supported the < embed > element for a long time. However, it has not been a part of the HTMLspecification before HTML5.
<embed src="audi.jpeg"> Note that the <embed> element does not have a closing tag. It can not contain alternative text.
<embed> element can also be used to include HTML in HTML:
<embed width="100%" height="500px" src="snippet.html">