audio tag
Advertisements
audio tag
Html <audio> tag defines sound, such as music or other audio streams.
Now, there are three supported audio file formats for the <audio> tag; those are given below;
- MP3
- Wav
- Ogg
Browser supported
| Audio formats | |||||
| mp3 | Yes | Yes | Yes | No | Yes |
| wav | Yes | Yes | No | Yes | Yes |
| ogg | Yes | Yes | No | Yes | No |
Syntax
<!DOCTYPE> <html> <body> <audio controls> <source src="/html5/images/song.mp3" type="audio/mpeg"> Your browser does not support the audio tag. </audio> </body> </html>
Result
MIME Types for Audio Formats
| Format | MIME Type |
|---|---|
| MP3 | audio/mpeg |
| Ogg | audio/ogg |
| Wav | audio/wav |
Browser supported
| Element | |||||
| <audio> | Yes | Yes | Yes | Yes | Yes |
Google Advertisment
