Example of Inserting Audio Using object Element - HTML CSS HTML

HTML CSS examples for HTML:Audio

Description

Example of Inserting Audio Using object Element

Demo Code

ResultView the demo in separate window

<!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>

Related Tutorials