HTML | param name Attribute Last Updated : 28 Jul, 2022 Comments Improve Suggest changes Like Article Like Report The HTML param name Attribute is used to specify a name of a <param> element. This attribute is used together with the value attribute to define a parameter for plug-ins which is associated with <object> element. Syntax: <param name="name"> Note: This attribute is depreciated from HTML 5. Attribute Values: It contains the value i.e name which specify the name for the <param> element.Example: html <!DOCTYPE html> <html> <head> <title>HTML | param name Attribute</title> <style> body { text-align: center; } h1 { color: green; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML param name Attribute</h2> <object data="sample.mp4"> <param name="video" value="play"> </object> </body> </html> Output : Supported Browsers: Google ChromeFirefoxEdgeOperaApple Safari Comment More infoAdvertise with us Next Article HTML | param name Attribute M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML-Attributes Similar Reads HTML name Attribute The HTML name attribute labels elements, notably form inputs, identifying them for data submission. It's crucial for form processing and is often used in JavaScript DOM manipulation. Unique within a form.Note: This attribute has been DEPRECATED and is no longer recommended.Supported tags:ElementDesc 3 min read HTML | value Attribute The value attribute in HTML is used to specify the value of the element with which it is used. It has different meaning for different HTML elements. Usage: It can be used with the following elements: <input>, <button>, <meter>, <li>, <option>, <progress>, and < 3 min read HTML keygen name Attribute The HTML <keygen> name Attribute is used to specify the name of the <keygen> Element. Syntax: <keygen name="name"> Attribute Values: It contains a single value name that describes the name of the <keygen> Element. Example: HTML <!DOCTYPE html> <html> <head> 1 min read HTML | applet name Attribute The HTML | applet name attribute is used to specify the name of a <applet> element. Note : This attribute is not supported by HTML5. Syntax: <applet name="name"> Attribute Values: It contains a single value name that describes the name of the applet element. Example: html <!DOCTYPE ht 1 min read HTML <param> value Attribute 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 i 1 min read Like