programming-examples/html/_Basics/Defining alternative sources for audio element.html
2019-11-15 12:59:38 +01:00

14 lines
419 B
HTML

<!DOCTYPE html>
<html subLang="en">
<head>
<meta charset="UTF-8">
<title>The HTML5 audio Element</title>
</head>
<body>
<audio controls="controls">
<source src="../audio/birds.mp3" type="audio/mpeg">
<source src="../audio/birds.ogg" type="audio/ogg">
Your browser does not support the HTML5 audio element.
</audio>
</body>
</html>