HTML < param > Tag - Learn About Website | DaddyFile

0

HTML <param> Tag


Example

Set the "autoplay" parameter to "true", so the sound will start playing as soon as the page loads:


<object data="horse.wav">
  <param name="autoplay" value="true">
</object>

Definition and Usage

The <param> tag is used to define parameters for plugins embedded with an <object> element.

Differences Between HTML 4.01 and HTML5

The "type" and "valuetype" attributes are not supported in HTML5.

Differences Between HTML and XHTML

In HTML the <param> tag has no end tag.
In XHTML the <param> tag must be properly closed, like this <param />.

Post a Comment

 
Top