![]() |
The WarningMost browsers no longer support Java Applets and Plug-ins. ActiveX controls are no longer supported in any browsers. The support for Shockwave Flash has also been turned off in modern browsers. Suggestion
To display a picture, it is better to use the
To display HTML, it is better to use the
To display video or audio, it is better to use the |
Example:
HTML
<embed type="image/jpg" src="https://horje.com/avatar.png" width="300" height="200">
Example:
HTML
<embed type="text/html" src="https://horje.com/learn/665/what-is-html-em-tag" width="500" height="200">
Example:
HTML
<embed type="video/webm" src="https://www.w3schools.com/tags/movie.mp4" width="400" height="300">
Attribute | Value | Description |
---|---|---|
height | pixels | Specifies the height of the embedded content |
src | URL | Specifies the address of the external file to embed |
type | media_type | Specifies the media type of the embedded content |
width | pixels | Specifies the width of the embedded content |
Example:
HTML
<style>
embed:focus { outline: none;
}
</style>
A picture with a height and width of 200 pixels.
The
height
attribute specifies the height of the embedded content, in pixels.
Tip:
Use the
width
attribute to specify the width of the embedded content.
<embed height=" pixels ">
Value | Description |
---|---|
pixels | The height of the embedded content, in pixels (i.e. height="100") |
Example:
HTML
<!DOCTYPE html>
<html>
<body>
<h1>The embed height and width attributes</h1>
<embed type="image/jpg" src="https://horje.com/avatar.png" width="200" height="200">
</body>
</html>
An embedded picture.
The
src
attribute specifies the address of the external file to embed.
<embed src=" URL ">
Value | Description |
---|---|
URL |
Specifies the address of the external file to embed. Possible values:
|
Example:
HTML
<embed src="https://horje.com/avatar.png">
A picture with a specified media type.
The
type
attribute specifies the Internet media type (formerly known as MIME type) of the embedded content.
<embed type=" media_type ">
Value | Description |
---|---|
media_type |
The Internet media type of the embedded content. Look at IANA Media Types for a complete list of standard media types. |
Example:
HTML
<embed type="image/jpg" src="https://horje.com/avatar.png">
A picture with a height and width of 200 pixels.
The
width
attribute specifies the width of the embedded content, in pixels.
Tip:
Use the
height
attribute to specify the height of the embedded content.
<embed width=" pixels ">
Value | Description |
---|---|
pixels | The width of the embedded content, in pixels (i.e. width="100") |
Example:
HTML
<embed type="image/jpg" src="https://horje.com/avatar.png" width="200" height="200">
How to create An embedded image | HTML Tag |
How to create An embedded HTML page | HTML Tag |
How to create An embedded video | HTML Tag |
What Browser will support for HTML embed Tag | HTML Tag |
Attributes for HTML <embed> Tag | HTML Tag |
How to set Default CSS Settings for HTML <embed> Tag | HTML Tag |
How to add HTML <embed> height Attribute | HTML Tag |
How to add HTML <embed> src Attribute | HTML Tag |
How to add HTML <embed> type Attribute | HTML Tag |
How to add HTML <embed> width Attribute | HTML Tag |
Category
: |
Web Tutorial |
Sub Category
: |
HTML Tag |
Uploaded by
: |
Admin |
Read Article https://horje.com/learn/1434/reference