How to define a parameter for an object using HTML ? Last Updated : 05 Jun, 2020 Comments Improve Suggest changes Like Article Like Report In this article, we define a parameter for an object by using the <param> tag in the document. In HTML, <param> tag is used to define the parameter for plug-ins which is associated with element. It does not contain the end tag. Syntax: <param name="" value=""> Example: The following example demonstrates the "param" element for an object. html <!DOCTYPE html> <html> <head> <title> How to define a parameter for an object using HTML? </title> <style> body { text-align: center; } h1 { color: green; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2> HTML5: How to define a parameter for an object? </h2> <object data="video.mp4"> <param name="autoplay" value="true"> </object> </body> </html> Output: Supported Browsers: Google ChromeInternet ExplorerFirefoxOperaSafari Comment More infoAdvertise with us Next Article How to define a parameter for an object using HTML ? M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML-Questions Similar Reads HTML | DOM Parameter Object The Parameter Object in HTML DOM is used to create and access the <param> element with in the object.Parameters for plugin embedded with an element is done by using the element. Syntax: It is used to access a <param> element.var x = document.getElementById("myParam");It is used to create 2 min read How to define an embedded object in HTML5 ? In this article, you will learn how to define an embedded object by using the <object> element in the document. It is used to display multimedia objects like audios, videos, images, PDFs, and Flash in web pages. The element is also used for displaying any other webpage on an HTML page. This ta 1 min read How to define metadata about an HTML document in HTML5 ? The metadata means the information about data. The <meta> tag in HTML provides information about HTML Document or in simple words, it provides important information about a document. These tags are basically used to add name/value pairs to describe properties of HTML documents, such as expiry 1 min read How to Pass Object as Parameter in JavaScript ? We'll see how to Pass an object as a Parameter in JavaScript. We can pass objects as parameters to functions just like we do with any other data type. passing objects as parameters to functions allows us to manipulate their properties within the function. These are the following approaches: Table of 3 min read HTML | DOM Object data Property The HTML | DOM Object data Property is used to set or return the value of the data attribute of an <object> element. The data attribute is used to specify the URL of the resource which will be used by the object.Syntax: Return the data property. objObject.dataIt is used to set the data propert 1 min read Like