<audio> Label
Definitions and usage
<audio> tags define sounds, such as music or other audio streams.
Instance
A simple HTML 5 audio:
<audio src= "Someaudio.wav" >
Your browser does not support audio tags.
</audio>
Differences between HTML 4.01 and HTML 5
The <audio> tag is a new tab for HTML 5.
Tips and comments
Tip: You can place textual content between the start and end tags so that older browsers can display information that doesn't support the label.
Property
Property value describes AutoPlay AutoPlay if this property occurs, the audio plays immediately after it is ready. Controls controls if this property appears, the control is displayed to the user, such as the play button. Loop loop If this property occurs, the playback starts again whenever the audio ends. Preload preload If this property occurs, the audio is loaded on page load and ready to play. If you use AutoPlay, this property is ignored. The URL of the audio to be played by the SRC URL.