HTML <embed> Tag
<embed type="video/quicktime" src="/resources/sample.mov">
<p>Click and drag.</p>
The above example demonstrates usage of the <embed>
element.
The <embed>
element is used for embedding an external application or interactive content into an HTML document.
The src
attribute gives the URL of the resource being embedded.
The type
attribute can be used to provide the MIME type of the embedded resource.
You can use the width
and height
attributes to specify the dimensions that the object should appear on the page.