NOTICE: This website is no longer updated or supported - as such many of the techniques used to build it may seem antiquated in the modern day. It is preserved for historical reasons only.

HTML XHTML The Complete Reference
home » reference » appendix a » html element reference

<bgsound> (Background Sound)


This Internet Explorer element associates a background sound with a page.

Standard Syntax (Defined by Internet Explorer 4)


<bgsound
balance="number"
id="unique alphanumeric identifier"
loop=number
src="url of sound file"
volume="number" />

Events Defined by Internet Explorer


onlayoutcomplete, onmouseenter, onmouseleave, onreadystatechange

Element Specific Attributes


balance
This attribute defines a number between -10,000 and +10,000 that determines how the volume will be divided between the speakers.

loop
This attribute indicates the number of times a sound is to be played and either has a numeric value or the keyword infinite.

src
This attribute specifies the URL of the sound file to be played, which must be one of the following types: .wav, .au, or .mid.

volume
This attribute defines a number between -10,000 and 0 that determines the loudness of a page's background sound.

Examples


<bgsound src="sound1.mid">

<bgsound src="sound2.au" loop="infinite">

Compatibility


No standards Internet Explorer 2, 3, 4, 5, 5.5, 6

Notes


Similar functionality can be achieved in some versions of Netscape using the <embed> tag to invoke an audio player.

You can write bgsound with a self-closing tag <bgsound />. However, since this element is not part of a standard, making it XHTML-like will not make it validate.

(X)HTML Elements
CSS Properties
Previous: bdo Next: big
< Home | About | Chapters | Examples | Errata | Reference | Site Map >