EMBED
TAG
SYNTAX
<EMBED>
- This tag allows different kinds of documents of varying data
types to be embedded into an HTML document.
- It has three default attributes:
SRC, WIDTH,
and HEIGHT.
- It may
also contain optional parameters that can be sent to the plug-in
handling the embedded data type.
-
SRC=<URL>
- The URL of the source document.
-
WIDTH=<size in pixels>
- The
WIDTH attribute specifies the width of the
embedded document, in pixels.
-
HEIGHT=<size in pixels>
- The
HEIGHT attribute specifies the height of
the embedded document, in pixels.
-
PARAMETER_NAME=<PARAMETER_VALUE>
- Optional parameters to send to plug-ins. There can be an
infinite
number of parameters passed to a plug-in. Examples of parameters are
PLAY_LOOP=TRUE,
or CONTROLS=FALSE. Parameters are specific to each
plug-in.
Examples:
<EMBED SRC="MyMovie.mov", WIDTH=150, HEIGHT=250
CONTROLS=TRUE>
<EMBED SRC="DoomGame.ids", WIDTH=400, HEIGHT=300 SPEED=SLOW
LEVEL=12>
adapted from a dated Netscape page