<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML Audio Tag</title>
</head>
<body>
<div>
<div style="font-size:0.9em;">If you hear birds your browser supports the AAC format. If your hear rain it doesn't.</div>
<audio controls autoplay>
<source src="birds.aac" type="audio/aac">
<source src="rain.mp3" type="audio/mpeg">
Your browser does not support the audio tag.
</audio>
</div>
</body>
</html>