Answers for "how to attach audio in HTML webpage"

0

how to add audio in html

<audio controls>

  <source src="flag.ogg" type="audio/ogg">

  <source src="flag.mp3" type="audio/mpeg">
  
</audio>
Posted by: Guest on April-02-2021

Code answers related to "how to attach audio in HTML webpage"

Browse Popular Code Answers by Language