applet

Form

<applet> ... </applet>

Attributes

attribute default description
id none specifies the unique ID
class none specifies the style sheet class
style none specifies the style sheet
code none specifies the URL of the applet class file
codebase none specifies the URL where the applet class file is stored
width none specifies in pixels the width
height none specifies in pixels the height

Support

HTML 3.2, HTML 4.01 [TF], XHTML 1.0 [TF], XHTML 1.1
Microsoft (MSDN)
[IE4 or later][Firefox 1 or later][Safari 1 or later][Opera 3 or later][Netscape 2 or later]

Explanation

The applet tag specifies a Java applet. The parameter passed to the applet is specified by the <param> tag.

Related Tags

embed, object, param

Sample Code [Output]

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=shift_jis">
<title>Sample</title>
</head>
<body>
<h1>Sample</h1>
<applet code="sample.class">
<param name="message" value="Sample">
If Java is not enabled on your browser, the sample code doesn't run.
</object>
</body>
</html>