Answers for "how to embed video and audio in html"

10

how to embed videos in html

<iframe src="example.mp4" width="100px" height="100px"></iframe>
Posted by: Guest on May-06-2020
2

how to embed audio in html

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

Browse Popular Code Answers by Language