hola nesecito hacer un botón que sea play y pause para un reproductor de audio aquí esta mi codigo base:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<audio id="sonido" src="cancion">
</audio>
<a href="javascript:document.getElementById('sonido').play();"><img width="19px" height="19px" src="play.png"></a>
<a href="javascript:document.getElementById('sonido').pause();"><img width="19px" height="19px" src="pausa.png"></a>
</body>
</html>