Example of Linking Audio Files - HTML CSS HTML

HTML CSS examples for HTML:Audio

Description

Example of Linking Audio Files

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <meta charset="UTF-8"> 
  <title>Example of Linking Audio Files</title> 
 </head> <!--from w  ww.  j ava  2 s .c  o  m-->
 <body> 
  <p><a href="../your.mp3">Track 1</a></p> 
  <p><a href="../your.mp3">Track 2</a></p>   
 </body>
</html>

Related Tutorials