Category: Multimedia | Previous: AREA | Next: NOEMBED

<EMBED>

Description:

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.

Syntax:

<EMBED SRC="URL" WIDTH="200" HEIGHT="80" LOOP="TRUE" AUTOSTART="TRUE">

Attributes:

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.

Notes:

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.

Example:

<EMBED SRC="media/7thguest.mid" WIDTH="200" HEIGHT="25" LOOP="TRUE" AUTOSTART="FALSE">



Index: HTML Reference | Previous: EM | Next: FONT