<param name="" value="">

Browser
  • IE
  • Cr
  • Sf
  • Fx
  • O
Type

The PARAM element is used to specify initial values for an object.

This element is used with the OBJECT or APPLET element.


<param name="bgcolor" value="0000ff">

Attribute Value Explanation
name=" " parameter name a unique name for the parameter
value=" " initial value the value of the parameter
valuetype=" " data the type of the value
data : character string (default)
ref : URL
object : the ID of the object
ref
object
type=" " MIME type the MIME type of the parameter

When there is the alternative content in the object, put it after the PARAM element.

<object ...>
<param ...>
<param ...>
Alternative content
</object>

Example


<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://*****" width="300" height="150">

<param name="movie" value="example.swf">
<param name="loop" value="false">
<param name="quality" value="high">

<img src="example.gif" alt="Example" width="300" height="150">

</object>