Answers for "how to keep audio in the web html"

0

how to keep audio in the web html

// for audio 
<audio controls>
  <source src="myAudio.mp3" type="audio/mpeg">
  <source src="myAudio.ogg" type="audio/ogg">
  <p>Your browser doesn't support HTML5 audio. Here is
     a <a href="myAudio.mp3">link to the audio</a> instead.</p>
</audio>
Posted by: Guest on June-16-2021

Browse Popular Code Answers by Language