Say Hello to the HTML5 Embed Element
Join the DZone community and get the full member experience.
Join For Free
In HTML5, the <embed>
element defines a container for an external application or interactive content
(a plug-in). In this example, we will use it to display a Flash movie:
<!DOCTYPE html> <html> <body> <embed src="stars.swf" type="application/x-shockwave-flash" width="500" height="350" /> </body> </html>
And the output will be:
The <embed>
tag is supported in Internet Explorer, Firefox, Opera, Chrome and Safari.
type="application/x-shockwave-flash" – specifies the MIME type of the embedded content
For
more informations, please visit http://www.w3.org/TR/html5/the-embed-element.html#the-embed-element.
HTML
Element
Published at DZone with permission of A. Programmer. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments