Specifies an object to be included in an HTML document.
The object element allows authors to embed external applications. Use the param element to specify additional object properties. The properties depend on the embedded application.
<object data="flash.swf" type="application/x-shockwave-flash" width="300px" height="200px">
<param name="pluginurl" value="http://www.macromedia.com/go/getflashplayer" />
<param name="movie" value="flash.swf" />
<param name="bgcolor" value="#FFFFE0" />
<param name="quality" value="high" />
</object>