The Applet Tag

ken's picture

Opening Tag: <APPLET>
Closing Tag: </APPLET>

Purpose:
The applet tag allows webpages to embed applets, such as Java Applets, within it. Parameters are passed within the extra <PARAM> tag.

Attributes
Align=position
- Could be BOTTOM, LEFT, MIDDLE, RIGHT or TOP.

Alt=string
- Text to be displayed if the browser doesn't support applets.

Code=url
- The URL of the applet to be used.

Codebase=url
- A base url for relative urls within the applet to use.

hspace=#
- A number for the number of pixels left and right of the applet display.

height=#
- The height of the applet in pixels.

name=appletname
- The name of the applet, in case more than one applet exists within the code url.

width=#
- The width of the applet in pixels.

Example

-

Related Tags

-

Back to:
Alphabetical Guide
Guide By Type