Html applet tag

In the html <applet> tag is used to embed a java applet inside of html page and it is not support some browser and some times it required extra plug-in. which tag have three attributes that's are code,width and height.In the code attributes needs to external files and width attributes needs to applet width and height attributes needs to applet height.

Syntax:

<applet> --- </applet>

Example Code



<applet code="game.class" width="650" height="500">
  Java applets
</applet>

In the above example <applet> tag has been added to java game.class.





Content