The HTML5 audio Element - HTML CSS HTML

HTML CSS examples for HTML:Audio

Description

The HTML5 audio Element

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <meta charset="UTF-8"> 
  <title>The HTML5 audio Element</title> 
 </head> <!--from   w w  w .  j  a v  a2s  .c o m-->
 <body> 
  <audio controls="controls" src="../your.mp3">
    Your browser does not support the HTML5 audio element. 
  </audio>   
 </body>
</html>

Related Tutorials