HTML <applet> Element
The <applet> tag in HTML is used to insert Java applets into a webpage. Java applets are small programs that run on the client-side and can provide interactive features to a webpage.
How to use the <applet> tag:
To add an applet to your webpage, you need to specify the following attributes:
| Attribute | Description |
|---|---|
| code | Specifies the name of the file containing the applet's code. |
| width | Specifies the width of the applet in pixels. |
| height | Specifies the height of the applet in pixels. |
| align | Specifies the alignment of the applet within the webpage (left, right, center). |
Here is an example of how to use the <applet> tag:
<applet code="HelloWorld.class" width="200" height="100">
Your browser does not support Java applets.
<param name="name" value="John">
</applet>
In the example above, we are inserting an applet called HelloWorld.class with a width of 200 pixels and a height of 100 pixels. If the browser does not support Java applets, the text "Your browser does not support Java applets." will be displayed.