| Version | W3C//DTD HTML 3.2 Final//EN
|
|---|
| Element | PARAM |
|---|
| Purpose | parameter used in an applet |
|---|
| Description | This element identifies a parameter used in the APPLET
element. The values of the name and value attributes are used by the applet in its operation.
|
|---|
| Start tag | Required <PARAM>
|
|---|
| Attributes | | Name | Type | Default | Comment |
|---|
| name | NMTOKEN | #REQUIRED | the name of the parameter | | value | CDATA | #IMPLIED | the value of the parameter
|
|
|---|
| Content | EMPTY
|
|---|
| End tag | Forbidden
|
|---|
| Referenced in | APPLET
|
|---|
| Example | | Source | Appearance |
|---|
<APPLET
Codebase="http://www.december.com/present/"
Code="NervousText.class" Width="100" Height="60" Align="left">
<PARAM Name="text" Value="Java">
</APPLET>
<br clear="all">
<APPLET
Codebase="http://www.december.com/present/"
Code="NervousText.class" Width="300" Height="60" Align="left">
<PARAM Name="text" Value="something different">
</APPLET>
|
|
|
|---|