HTML Tag: param
Passes a parameter to a plugin. Used with object
elements.
param
has no content and therefore does not warrant a closing tag.
Required Attributes
Attribute | Description | Possible values |
---|---|---|
name |
The parameter name. | Text. |
value |
The parameter value. | Text. |
Optional Attributes
Example
<object type="application/x-shockwave-flash" width="200" height="300" id="penguin">
<param name="movie" value="flash/penguin.swf">
<param name="quality" value="high">
<img src="images/penguin.jpg" width="200" height="300" alt="Penguin">
</object>