Example
Example
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<title>Audio Formats</title>
5
</head>
6
<body>
7
8
<h2>Multi-Format Audio Player</h2>
9
<audio controls>
10
<source src="soundtrack.ogg" type="audio/ogg">
11
<source src="soundtrack.mp3" type="audio/mpeg">
12
<source src="soundtrack.wav" type="audio/wav">
13
Audio element unsupported on this device.
14
</audio>
15
16
</body>
17
</html>
