Not Supported in HTML5.The |
Plug-ins are a computer programs that extend the standard functionality of the browser.
Plug-ins have been used for many different purposes:
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.
If you want to embed a video, use the <video>
tag:
Example:
HTML
<video width="320" height="240" controls>
<source src="https://www.w3schools.com/tags/movie.mp4" type="video/mp4">
<source src="https://www.w3schools.com/tags/movie.mp4" type="video/ogg">
Your browser does not support the video tag.
</video>
If you want to embed audio, use the <audio>
tag:
Example:
HTML
<audio controls>
<source src="https://www.w3schools.com/tags/horse.ogg" type="audio/ogg">
<source src="https://www.w3schools.com/tags/horse.ogg" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
To embed objects, you can use both the <embed>
tag and the <object>
tags:
Embed a document with the <embed> element:
Example:
HTML
<embed src="https://horje.com/avatar.png">
To object you can use <object>
tags:
Example:
HTML
<object data="https://horje.com/avatar.png" width="300" height="200"></object>
Reffered: https://www.w3schools.com/tags/tag_applet.asp
Plug-ins for HTML <applet> Tag | HTML Tag |
What to Use Instead of HTML <applet> Tag? | HTML Tag |
Use <video> Tag Instead of HTML <applet> Tag | HTML Tag |
How to Use <audio> Tag Instead of HTML <applet> Tag | HTML Tag |
How to Use <embed> Tag Instead of HTML <applet> Tag | HTML Tag |
How to Use <object> Tag Instead of HTML <applet> Tag | HTML Tag |
Read Full: | HTML Tag |
Category: | Web Tutorial |
Sub Category: | HTML Tag |
Uploaded: | 1 year ago |
Uploaded by: | Admin |
Views: | 46 |