An embeded object. The embed element embeds a multimedia file into the document. The browser will place a player for the file into the document.
<EMBED SRC="URL" WIDTH="200" HEIGHT="80" LOOP="TRUE" AUTOSTART="TRUE">
| Attribute | Value | Description |
|---|---|---|
SRC |
"URL" |
The URL of the file to play. |
WIDTH |
INTEGER |
The width in pixels of the player. |
HEIGHT |
INTEGER |
The height in pixels of the player. |
LOOP |
TRUE, FALSE |
Whether to loop the file. |
AUTOSTART |
TRUE, FALSE |
Whether to start playing automatically. |
EMBED is a Netscape extension to html. It is also supported by Internet Explorer.
Only the SRC attribute is required, and if no others are given, the player defaults will be used.
<EMBED SRC="media/7thguest.mid" WIDTH="200" HEIGHT="25" LOOP="TRUE" AUTOSTART="FALSE">