HTML <param> value Attribute Last Updated : 12 Mar, 2024 Comments Improve Suggest changes Like Article Like Report The HTML <param> value Attribute defines the value of a <param> element, used with the name attribute to specify parameters for plugins within <object> tags. Syntax: <param value="value"> Note: This attribute is depreciated from HTML 5. Attribute: Name Description value It is used to specify the value of the param Element. HTML <param> value Attribute ExamplesExample 1: In this example we are using the <param> element's value attribute within <object> tags to specify parameters for playing video and audio files. HTML <!DOCTYPE html> <html> <head> <title> HTML param value Attribute </title> </head> <body> <object data= "https://media.geeksforgeeks.org/wp-content/uploads/20190626010302/ice_video_20190626-005104_edit_0.mp4"> <param name="video" value="play"> </object> <object data= "https://media.geeksforgeeks.org/wp-content/uploads/20190625154423/1-1.wav"> <param name="audio" value="play"> </object> </body> </html> Output: HTML param value attribute Supported BrowsersThe browser supported by HTML <param> value Attribute are listed below: Google ChromeEdge FirefoxOperaSafari Comment More infoAdvertise with us Next Article HTML <param> value Attribute M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML-Attributes Similar Reads HTML <option> value Attribute HTML <option> value attribute determines the data sent to the server upon form submission, while the text content represents the visible options in dropdown menus. Syntax: <option value = "value">Attribute Value: It contains a single value that has to be sent to the server. HTML option 1 min read HTML | <li> value Attribute The <li> value attribute in HTML is used to specify the initial value of the list item. It is only applicable on the ordered list. Syntax: <li value="number">list items </li> Attribute Value: This attribute contains single value number which is used to specify the value of the list 1 min read HTML <a> name Attribute The HTML anchor name attribute is used to specify the name for an <a> element. It is used to reference the form data after submitting the form or to reference the element in JavaScript. Note: The <a> name attribute is not supported by HTML5. Syntax<a name="name"> Attribute Values:A 1 min read HTML | <meta> name Attribute The HTML <meta> name Attribute is used to specify the name for the metadata. This attribute is used to define the name for the information/value of the content attribute. Note: If the http-equiv attribute is set, the name attribute should not be set. Syntax: <meta name="value"> Examples: 1 min read HTML | <select> name Attribute The HTML <select> name Attribute is used to specify a name for the drop-down list. It is used to reference the form-data after submitting the form or to reference the element in a JavaScript. Syntax: <select name="text"> Attribute Values: It contains the value i.e name which specify the 1 min read Like