embed type Attribute - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:embed

Description

The type attribute sets the Internet media type or MIME type of the embedded content.

Attribute Values

Value Description
media_type The Internet media type of the embedded content.

An embedded flash animation with a specified media type:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<embed src="helloworld.swf" type="application/x-shockwave-flash">

</body><!--   ww w  .ja  v  a2s  . co  m-->
</html>

Related Tutorials