programming-examples/html/_Basics/Embedding audio in HTML documents.html
2019-11-15 12:59:38 +01:00

12 lines
319 B
HTML

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