hola,quiero hacer un reproductor con una linea de tiempo
este es mi codigo,espero que me comprendan
<html>
<head>
<title>pagina</title>
</head>
<body>
<audio id="sonido1" src="nombre de sonido">
</audio>
<a href="javascript:document.getElementById('sonido1').play();"><img width="19px" height="19px" src="play.png"></a>
<a href="javascript:document.getElementById('sonido1').pause();"><img width="19px" height="19px" src="pausa.png"></a>
<a href="javascript:document.getElementById('sonido1').currentTime=0;"><img width="19px" height="19px" src="recomenzar.png"></a>
</body>
</html>