parameter

html param tag syntax

Function:Allows you to specify run-time settings for objects inserted into XHTML documents, that is, this tag can provide parameters for the <object> or <applet> tag that contains it.

Note: In HTML, the <param> tag has no closing tag. In XHTML, the <param> tag must be closed properly.

Note: All browsers support the <param> tag.

html param tag example

<object classid="clsid:F08DF954-8592-11D1-B16A-00C0F0283628" id="Slider1" 
width="100" height="50">
<param name="BorderStyle" value="1" />
<param name="MousePointer" value="0" />
<param name="Enabled" value="1" />
<param name="Min" value="0" />
<param name="Max" value="10" />
</object>

Run instance »

Click the "Run instance" button to view the online instance