HTML CSS examples for HTML:Audio
The HTML5 audio Element
<!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>