UK [ˈæplət] US ['æplət]
n.Java program; support program, small application; small program; program type
Plural: applets
html applet tag syntax
Function:Define the embedded applet.
Note: There is still a support for <applet> in some browsers, but additional plug-ins and installation processes are required to work.
Note: HTML5 does not support the <applet> tag. Please use the <object> tag instead. In HTML 4.01, the <applet> element is deprecated.
html applet tag example
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <applet code="Bubbles.class" width="350" height="350"> Java applet that draws animated bubbles. </applet> </body> </html>
Run instance »
Click the "Run instance" button to view the online instance