Set up HTML5 - Audio tag for playing mp3 music - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:audio

Description

Set up HTML5 - Audio tag for playing mp3 music

Demo Code

ResultView the demo in separate window

<html>
 <head></head> 
 <body> 
  <audio controls> 
   <source src="abc.mp3" type="audio/mpeg"> Your browser does not support the audio element. 
  </audio>  
 </body><!-- w  ww. jav  a  2  s.  c  om-->
</html>

Related Tutorials