Insert audio in HTML documents using the object element




Insert audio in HTML documents using the object element examples

<!DOCTYPE html>
<html>
   <head>
      <meta charset="UTF-8">
      <title>Inserting Audio Using object Element</title>
   </head>
   <body>
      <object data="audio/sea.mp3" width="200px" height="50px"></object>
      <object data="audio/sea.ogg" width="200px" height="50px"></object>
   </body>
</html>

Output