Param HTML

HTML <param> Tag To pass the parameters to the plugin included with the <object> tag, the HTML <param> tag is used with the HTML <object> tag. Multiple <param> tags can be used within an <object> element. Syntax: <param name=” ” value=””> Example: <!DOCTYPE html> <html> <body> <p>Example:</p> <object data=”peacock.wav”> <param name=”autoplay” value=”true”> </object> </body> </html> … Read more