HTML <param> tag
Syntax
<param>
Definition and Usage
The PARAM element provides parameters for the OBJECT
and APPLET
elements. An OBJECT
or APPLET may
contain any number of PARAM elements prior to the
alternate content that is also contained within the OBJECT
or APPLET element.
Required Attributes
| Attribute |
Value |
Description |
| name |
name |
Defines a unique name for a run-time parameter |
Optional Attributes
| Attribute |
Value |
Description |
| type |
MIME type |
Specifies the internet media type for the parameter |
| value |
value |
Specifies the value of a run-time parameter defined by
name |
| valuetype |
data
ref
object |
Specifies the MIME type of the value |
Standard Attributes
For a full description, go to Standard
Attributes.
Example
| Source |
Output |
<P ALIGN=center>
<OBJECT DATA="test.mov"TYPE="video/quicktime">
<PARAM NAME=BGCOLOR VALUE=WHITE>
<PARAM NAME=FGCOLOR VALUE=RED>
</OBJECT>
</P>
|
|
|