JSFiddle - React, Tailwind, and code Playground

HTML

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

JavaScript

function playBeep ()
{

var sound = document.getElementById("aButton")
sound.play()

}