Example
How to use the <object> element to embed a Flash file:<object width="400" height="400" data="helloworld.swf"></object>
Teach Yourself by BH24 HTML Editor Tool!
The <object> tag is supported in all major browsers.
Definition and Usage
The <object> tag defines an embedded object within an HTML document. Use this element to embed multimedia (like audio, video, Java applets, ActiveX, PDF, and Flash) in your web pages.You can also use the <object> tag to embed another webpage into your HTML document.
You can use the <param> tag to pass parameters to plugins that have been embedded with the <object> tag.
Tips and Notes
Note: An <object> element must appear inside the <body> element. The text between the <object> and </object> is an alternate text, for browsers that do not support this tag.Tip: For images use the <img> tag instead of the <object> tag.
Tip: At least one of the "data" or "type" attribute MUST be defined.