In this lesson we'll learn about a few useful extra things to do in HTML.
Background sound
If you want a sound to play when your page is viewed then you need to use the <bgsound> tag. You also have to say how many times the sound must play with the loop attribute:
<bgsound src="mysound.mp3" loop="3">
You can use a few different types of sound files like MP3 and WAV. If you want the sound to loop forever just set loop="infinite".
Horizontal rules
You can put a horizontal line across your page by using the <hr> tag. You can...