Home → References → HTML Tags →
HTML Tag: param
Parameter of an object.
HTML Dog is hosted by Titan Internet
Required Attributes
nameis used so that the element can be referenced and processed by the object.
Optional Attributes
valuecan be used to specify the value of the parameter.idcan be used to uniquely identify the element.typecan be used to specify the content type.valuetypecan be used to specify the content type of thevalueattribute. Values can bedata,reforobject.
Example
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="someplace/swflash.cab" 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>

