|
|
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. SuggestionTo 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 |
<embed type="image/jpg" src="https://horje.com/avatar.png" width="300" height="200">
<embed type="text/html" src="https://horje.com/learn/665/what-is-html-em-tag" width="500" height="200">
<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 |
<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") |
<!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:
|
<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. |
<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") |
<embed type="image/jpg" src="https://horje.com/avatar.png" width="200" height="200">
Category: | Web Tutorial |
Sub Category: | HTML Tag |
Uploaded by: | Admin |
Read Articlehttps://develop.horje.com/learn/1434/reference