JSFiddle - React, Tailwind, and code Playground
HTML
<div id="audio-wrapper">
<embed id="audio" name="pop" src="https://wiki.selfhtml.org/local/Europahymne.mp3" loop="true" hidden="true" autostart="true">
</div>
<button onclick="play();" type="button">Play</button>
<button onclick="pause();" type="button">Pause</button>
<script>
function play() {
var myAudio = document.getElementById('audio');
if(myAudio) {
myAudio.play()
}
}
</script>