
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
HTML - <applet> Tag
Description
The HTML <applet> tag specifies an applet. It is used for embedding a Java applet within an HTML document. It is not supported in HTML5.
Example
<!DOCTYPE html> <html> <head> <title>HTML applet Tag</title> </head> <body> <applet code = "newClass.class" width = "300" height = "200"></applet> </body> </html>
Here is the newClass.java file −
import java.applet.*; import java.awt.*; public class newClass extends Applet { public void paint (Graphics gh) { g.drawString("Tutorialspoint.com", 300, 150); } }
This will produce the following result −
Global Attributes
This tag supports all the global attributes described in HTML Attribute Reference
Specific Attributes
The HTML <> tag also supports following additional attributes −
Attribute | Value | Description |
---|---|---|
align | URL | Deprecated − Defines the text alignment around the applet |
alt | URL | Alternate text to be displayed in case browser does not support applet |
archive | URL | Applet path when it is stored in a Java Archive ie. jar file |
code | URL | A URL that points to the class of the applet |
codebase | URL | Indicates the base URL of the applet if the code attribute is relative |
height | pixels | Height to display the applet |
hspace | pixels | Deprecated − Defines the left and right spacing around the applet |
name | name | Defines a unique name for the applet |
object | name | Specifies the resource that contains a serialized representation of the applet's state. |
title | test | Additional information to be displayed in tool tip of the mouse |
vspace | pixels | Deprecated − Amount of white space to be inserted above and below the object. |
width | pixels | Width to display the applet. |
Event Attributes
This tag supports all the event attributes described in HTML Events Reference
Browser Support
Chrome | Firefox | IE | Opera | Safari | Android |
---|---|---|---|---|---|
No | Yes | Yes | No | Yes | No |
html_tags_reference.htm
Advertisements