|
|
home
/ reference
/ html
<bgsound></bgsound>

src
loop
This tag is used to specify a backrground sound for a web page and to define
it's attributes.
<bgsound src="">
| |
Description
| |
This attribute is used to define what the source of the sound is.
Insert the file name and file path if necessary here.
|
Code
| |
<bgsound src="FILENAME.wav"></bgsound>
|
|
<bgsound loop="">
| |
Description
| |
The loop attribute is used to define how many times the sound will repeat itself. Between the quotes
specify how many times you want the sound to repeat. Setting loop
to "infinite" or "-1" will cause the sound to repeat indefinitely.
|
Code
| |
<bgsound loop="5"></bgsound>
|
|
|