HTML CSS examples for HTML:Audio
Example of Inserting Audio Using object Element
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Example of Inserting Audio Using object Element</title> </head> <!--from w w w.j av a2s .c o m--> <body> <object data="../your.mp3" width="200px" height="50px"></object> <object data="../your.ogg" width="200px" height="50px"></object> </body> </html>