1MIME Types for Audio Formats
2Format MIME-type
3MP3 audio/mpeg
4OGG audio/ogg
5WAV audio/wav
6
7If simply audio '<audio>' tag is written then audio controls will not appear on the web page.
8and for showing audio controller we need to write controls attribute in audion tag '<audio controls>'.
9
10Example
11<audio controls>
12 <source src="horse.mp3" type="audio/mpeg">
13</audio>