HTML Plug-ins
Plug-ins are computer software which extends the default browser functionality.
Plug-ins were created with a variety of uses in mind :
- Java applets must be installed in order for them to work.
- Microsoft ActiveX controls must be used in order to function.
- Flash movies will be displayed.
- Maps are displayed.
- to perform a virus scan.
- To check the validity of a bank card.
Warning :-
Java Applets and Plug-ins are no longer supported by the majority of browsers.
Controlling ActiveX in any browser is no longer supported.
In modern browsers, support for Shockwave Flash has also been switched off.
object
:- It is currently the standard tag used to embed external contents on a page.embed
:- It is the oldest and deprecated one.
Related Links
The <object> Element
All browsers recognise the object
element.
An embedded object in an HTML document is defined by the object
element.
It is intended for the inclusion of computers resources or documents in web pages, such as Java applets, PDF readers and Flash Player, but can also be used for the purpose of HTML documents or text files.
Example 1:- Read an HTML page
Output :-
Example 2:- Display an image
Output :-
Example 3:- Embed an youtube video
Output :-
Related Links