HTML & CSS Wiki
Advertisement


The void HTML <param /> element is used to define parameters or variables for an <object> or <applet> element.


Attributes[]

Attribute Value Description
name name Defines the name for a parameter (to use in scripts). This attribute is required for functionality.
type MIME type Specifies the MIME type for a parameter.
value value Specifies the value of a parameter.
valuetype type Specifies the type of the value.
Global Attributes

See Global HTML Attributes.


HTML example:

<object width="425" height="344" data="http://www.example.com/foo.swf">
    <param name="movie" value="http://www.example.com/foo.swf" />
    <param name="allowFullScreen" value="true" />
    <param name="allowscriptaccess" value="always" />
    <embed src="http://www.example.com/foo.swf" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344" />
</object>

External Links[]

Advertisement