<param /> Description:
The <param /> element specifies values that might be required by an object or applet at run-time.
<param /> Web Browser Support:
- Netscape 2, 3, 4, 6, 7
- Mozilla 1
- Firefox 1
- Internet Explorer 3, 4, 5, 6
- Opera 6, 7, 8
- Safari 1
- HTML 4.0
- XHTML 1.0: XHTML Applet Module, XHTML Object Module
<param /> Attributes:
<param /> End Tag:
None. <param /> is a singleton tag.
<param /> Contents:
None.
<param /> Valid Context:
The <param /> tag is valid within the following tags:
applet, object
<param /> Usage:
- call a java applet with one parameter
<object codebase="http://webdesign.about.com/library/classes" classid="basicApplet.class" width="50" height="100">
<param name="timezone" value="Pdt" />
Standard Java Applet
</object>
<param /> Special Notes:
- Use this tag to define name=value pairs used by the applet or object.

