audio
UK[ˈɔ:diəʊ] US[ˈɔ:dioʊ]
adj.Audio; auditory, sound
n.Sound; sound circuit; audible sound; sound signal
html5<audio> tag syntax
Function: The <audio> tag defines sounds, such as music or other audio streams.
Note: You can place text content between the start tag and the end tag, so that old browsers can display a message that the tag is not supported.
html5<audio> tag example
<!DOCTYPE HTML> <html> <body> <audio src="/i/horse.ogg" controls="controls"> Your browser does not support the audio element. </audio> </body> </html>
Click the "Run instance" button to view the online instance