HomeReferencesHTML Tags

HTML Tag: param

Parameter of an object.

HTML Dog, The Book HTML Dog book cover

HTML Dog is hosted by Titan Internet

Required Attributes

  • name is used so that the element can be referenced and processed by the object.

Optional Attributes

  • value can be used to specify the value of the parameter.
  • id can be used to uniquely identify the element.
  • type can be used to specify the content type.
  • valuetype can be used to specify the content type of the value attribute. Values can be data, ref or object.

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>