// Play audio when the page loads
window.onclick = function() {
document.getElementById("pageLoadAudio").play();
};
// Play audio when the button is clicked
document.querySelector("button[type='submit']").addEventListener("click", function() {
document.getElementById("buttonClickAudio").play();
});
Leave a Comment for Sabrina Cooley