HTML <param> Tag
The <param> tag is used to define parameters for plugins embedded with an <object> element.
Attributes
Attribute | Value | Description |
---|---|---|
name | name | Specifies the name of a parameter |
type | media_type | Not supported in HTML5. Specifies the media type of the parameter |
value | value | Specifies the value of the parameter |
valuetype | data ref object |
Not supported in HTML5. Specifies the type of the value |
Example
<!DOCTYPE html> <html> <body> <object data="dogbark.wav"> <param name="autoplay" value="true"> </object> </body> </html>