HTML - Tags - <applet>

#5 of 147
applet

 <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

Ads by Google


Ask a question, send a comment, or report a problem - click here to contact me.

© Richard McGrath