Html 5 Param Tag

In the html5 <param> tag is used to variable passing for an <object> tag and which tag you can set to run time. Which tag use to inside of <object> tag. In the type and valuetype attributes are not support in html5. In the <param> tag is an empty tag for a html page and it means you can not to put close tag.

Syntax:

<object>
  <param />
</object>

Example Code



<object data="mp3/mp3.ogg">
  <param name="autoplay" value="false" />
</object>

In the above example <param> tag has been added inside of <object> tag.





Content