how to keep audio in the web html

Solutions on MaxInterview for how to keep audio in the web html by the best coders in the world

showing results for - "how to keep audio in the web html"
Noa
26 Aug 2018
1// for audio 
2<audio controls>
3  <source src="myAudio.mp3" type="audio/mpeg">
4  <source src="myAudio.ogg" type="audio/ogg">
5  <p>Your browser doesn't support HTML5 audio. Here is
6     a <a href="myAudio.mp3">link to the audio</a> instead.</p>
7</audio>