Object

Element: <object>
Start tag: required
End tag: required
Attributes: declare, classid, codebase,
  data, type, codetype, archive, standby,
  height, width, usemap, border, hspace,
  vspace. id, class, lang, title, style,
  onclick, ondblclick, onmousedown,
  onmouseup, onmouseover, onmousemove,
  onmouseout, onkeypress, onkeydown,
  onkeyup, more attribute info here.

<object> is used to embed objects within a document. The object could need an application to render it or the user agent might already be able to do so. Attributes are declare, classid, codebase, data, type, codetype, archive, standby, height, width, usemap, border, hspace, vspace.

declare makes the object a declaration. classid is used to specify the location of the objects data. codebase specifies the base URL for classid, archive, and data. data is used to specify the location of the objects data. type specifies the type of data. codetype specifies the objects data type. archive specifies a URL to information on the object. standby specifies a message that the user agent should display until the object renders. height sets the height of the object. width sets the width of the object. usemap is used for client side imagemaps. border sets the border around the object. hspace sets the horizontal space around the object. vspace sets the vertical space around the object.

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/ pub/shockwave/cabs/flash/ swflash.cab#version=5,0,0,0" width="400" height="300">
</object>

Param

Element: <param>
Start tag: required
End tag: forbidden
Attributes: id, name, value, valuetype,
  type

<param> specifies parameters that are needed by the object to run. Attributes are name, value, valuetype, type. name specifies the name of the parameter. value sets the value of the parameter. valuetype values are data, ref, object. type sets the content type.

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/ pub/shockwave/cabs/flash/ swflash.cab#version=5,0,0,0" width="400" height="300">
<param name="movie" value="flash.swf">
<param name="loop" value="false">
<param name="quality" value="high">
<param name="bgcolor" value="#FFFFFF">
</object>