<html>
<body>
<applet code="HelloWorld.class" width="150" height="50">
</applet>
</body>
</html>
The applet element is used to embed a Java applet.
Obsolete
A Java applet is a type of Java application that is designed to run on a web page. The applet (a .class file containing Java bytecode) is downloaded from the web server and run using a browser plugin.
N of