How add audio player to play mp3 music file on a web page in HTML

1 Answer

0 votes
<!DOCTYPE html> 
<html> 
<body> 
<audio controls>    
    <source src="music.mp3" type="audio/mpeg">    
    Your browser does not support audio tag.    
</audio>      
</body> 
</html>

 



answered Oct 8, 2019 by avibootz
...