HTML CSS examples for HTML:Audio
The HTML5 audio Element with audio type setting
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>The HTML5 audio Element</title> </head> <!--from w ww. j av a2 s. c om--> <body> <audio controls="controls"> <source src="../your.mp3" type="audio/mpeg"> <source src="../your.ogg" type="audio/ogg"> Your browser does not support the HTML5 audio element. </audio> </body> </html>