Version: 3.2, 4.0
Compability: Explorer 4, 5 Netscape 6
The <param> tag is used to set the name/value pair that provides a parameter required by a Java object in an applet tag or by some object in an object tag. Each param tag can provide only one parameter. However, there can be any number of parameters (from zero to many). These parameters, including the name and acceptable range of values (defaults, etc.), are established by the author of the applet or object. For example, they could set the color of the applet.
This tag is placed immediately after the opening applet or object tag. There is no closing tag.
<object classid="clsid:F08DF954-8592-11D1-B16A-00C0F0283628" id="Slider1" width="80" height="30">
<param name="Min" value="1" />
<param name="Max" value="5" />
Sorry, your browser does not display the slider object
</object>
This example shows how the param tag can be used to provide min and max values for the slider object.