Answers for "Write HTML5 code for embedding the audio and video elements in the web page."

1

how to embed audio in html

<audio controls>
  <source src="name.mp3" type="audio/mp3" />
</audio>
Posted by: Guest on May-06-2020
7

how do you play audio files on html

<audio src="sound.mp3" autoplay></audio>
Posted by: Guest on March-15-2020

Code answers related to "Write HTML5 code for embedding the audio and video elements in the web page."

Browse Popular Code Answers by Language