<!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>