Category: Programming | Previous: APPLET | Next: SCRIPT

<PARAM>

Description:

A parameter. The param element is used to define a parameter of a Java Applet.

Syntax:

<PARAM NAME="Name" VALUE="Value">

Attributes:

Attribute Value Description
NAME Name The name of the parameter to pass to the applet.
VALUE Value The value of the parameter to be passed to the applet.

Notes:

Example:

<APPLET CODE="HyperMarquee.class" CODEBASE="java/" WIDTH="400" HEIGHT="40">
<PARAM NAME=STRING VALUE="APPLET Element ^ Applet_Frame.html ^ PARAM Element ^ Param_Frame.html">
<PARAM NAME=FONT VALUE="COURIER">
<PARAM NAME=STYLE VALUE="PLAIN">
<PARAM NAME=SIZE VALUE=15>
<PARAM NAME=FGCOLOR VALUE="#000000">
<PARAM NAME=BGCOLOR VALUE="#FFFFFF">
<PARAM NAME=FPS VALUE=100>
</APPLET>



Index: HTML Reference | Previous: P | Next: PRE