HOME            MAIN            PREV

HTML Meta Elements Summary


HOME            MAIN            NEXT

BASEFONT Element: Base Font for Document

Usage:                <BASEFONT>
Can Contain:       empty
Can Be Inside:    ADDRESS, BLOCKQUOTE, BODY, CENTER, DIV, FORM, PRE,
   
                        DD, DT, LI, P, TD, TH, Hn,
                           A, CAPTION, character highlighting

Attributes:           COLOR, FACE, SIZE

BASEFONT specifies the default font characteristics--primarily font size--for all text following BASEFONT. BASEFONT should ideally appear prior to any displayed text in the BODY of the document. Localized changes to the font size should be implemented using the FONT element or-better yet-- by using SPAN and stylesheets.

HOME            MAIN            NEXT            PREV

BGSOUND Element: Background Audio/Sound (Internet Explorer only)

Usage:                <BGSOUND>
Can Contain:       empty
Can Be Inside:    unclear: can apparently appear inside the HEAD, or inside any non-empty BODY element
Attributes:           LOOP, SRC

BGSOUND inserts an inline audio snippet--the URL location of the audio file is specified by the SRC attribute. By default 
TOP

This is the BgsoundEx1.htm file:

<HTML>
<HEAD>
<TITLE>
HTML BGSOUND Example 1</TITLE>
</HEAD>
<BODY>
<EMBED SRC=
"sounds/MozartNo40.rmi" HEIGHT="1" WIDTH="1" AUTOSTART="true" HIDDEN="true">
<NOEMBED>
<BGSOUND SRC=
"sounds/MozartNo40.rmi" LOOP="infinite">
</NOEMBED>

<P>HTML BGSOUND Example 1: CLOSE THE WINDOW TO STOP THE MUSIC.</P>

</BODY>
</HTML>

Click here to pop-up a new window with HREF="Bgsound.htm" to play the sound file sounds/MozartNo40.rmi".


HOME            MAIN            NEXT            PREV

MAP Element: Client-Side Imagemap Database

Usage:                <MAP>...</MAP>
Can Contain:       AREA
Can Be Inside:    ADDRESS, BLOCKQUOTE, BODY, CENTER, DIV, FORM, PRE,
   
                        DD, DT, LI, P, TD, TH, Hn,
                           A, CAPTION, character highlighting

Attributes:           NAME

MAP contains client-side imagemap mapping data. Each MAP must be uniquely identified by a NAME attribute. For example, <MAP NAME="map1">. Such a map is referenced from an IMG element using USEMAP attribute, for example:
<IMG SRC="image.gif ... USEMAP="map1">
A single document can contain any number of MAP elements. MAP need not be in the same document as the IMG from which it is referenced. However, no browsers currently support such external MAP elements. Example:
<IMG SRC="image.gif ... USEMAP="http://some.where.com/other.htm#map1">
MAP must contain AREA elements. AREA elements mark out the regions of an image and the URLs to which these regions are linked.
HOME            MAIN            PREV

AREA Element: Client-Side Imagemap Mapping Area

Usage:                <AREA>
Can Contain:       empty
Can Be Inside:    MAP
Attributes:           ALT, COORDS, HREF, NOHREF, SHAPE, TARGET

AREA specifies shaped regions in a mapped image and the URLs associated with the shape. AREA can overlap--in this case the browser searches sequentially down through the different AREA elements, and selects the first acceptable entry.
HOME            MAIN            PREV
Hosted by www.Geocities.ws

1