programming-examples/html/Basics/Embedding audio in HTML documents.html

12 lines
319 B
HTML
Raw Normal View History

2019-11-18 14:44:36 +01:00
<!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>