What is an applet alternative in HTML5?

I have used the <applet>HTML tag for a long time. But after my long break with HTML , although I am trying to use this tag, it does not seem to work. Does anyone know what is an alternative to a tag <applet>in HTML5 ? and which browsers support it?

+4
source share
1 answer

The applet is no longer supported in HTML5 . To remind you of applet, I included one example here : applet

<applet code="Bubbles.class" width="350" height="350">
    Java applet that draws animated bubbles.
</applet>

Read more about the applet here: [ http://www.w3schools.com/tags/tag_applet.asp] [1]

HTML5 <object>.

<object> HTML. (, , , Java-, ActiveX, PDF Flash) -.

<object> - HTML-.

<param> , <object>.

*** w3schools.com.

:

<object width="400" height="400" data="helloworld.swf"></object> 

[http://www.w3schools.com/tags/tag_object.asp] [2]

+2

Source: https://habr.com/ru/post/1540879/


All Articles