content logo

Learn HTML:

Html embed tag

The HTML <embed> tag represents a container for external application or interactive content.

Example

<!DOCTYPE html>
<html>
<head>
<title>HTML Embed Tag</title>
</head>
<body>
<embed src="/html/yourfile.mdi" width="250" height="100" />
</body>
</html>

The HTML <video> tag also supports following additional attributes:

Attribute Value Description
height  pixels Specifies the height.
src  URL Specifies the address of the source file.
type  MIME_type Specifies the MIME type.
width  pixels Specifies the width.
#

HTML Embed Example

#

HTML Embed Code

#

HTML Embed Tutorial