<param> Tag Examples

Examples of the param tag in HTML 5
Example of embedding video in HTML 5

The "old" YouTube embed code used the <object> tag with <param> tags and an <embed> tag. (The "new" YouTube code uses the <iframe> tag.)

<object width="640" height="390">
   <param name="movie" value="http://www.YouTube.com/v/GGT8ZCTBoBA?fs=1&hl=en_US"/>
   <param name="allowFullScreen" value="true"/>
   <param name="allowscriptaccess" value="always"/>
   <embed src="http://www.YouTube.com/v/GGT8ZCTBoBA?fs=1&hl=en_US"
      type="application/x-shockwave-flash"
      allowscriptaccess="always" allowfullscreen="true"
      width="640" height="390"/>
</object>

The <embed> tag provides a fallback for browsers that do not support the <object> tag.