Would anyone be able to help me here as I'm not quite sure what the problem is, I think it has something to do with placement of one of the lines.
https://jsfiddle.net/70kwwpqp/
<div class="animatedButton">
<audio id="Sound" src="Sounds/beep.mp3"> </audio>
<a href="Home.html">
<button class="aButton" <onclick="playBeep()"> <img src="img/Home.png"> </button>
</a>
</div>
function playBeep ()
{
var sound = document.getElementById("aButton")
sound.play()
}