You are here : htmlHTML 5object

<object> - HTML 5

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.


Syntax

    <object width="400" height="400" data="helloworld.swf"></object>


Example

    <object width="400" height="400" data="helloworld.swf"></object>


Output / Return Value


Limitations


Alternatives / See Also


Reference