Computer Science, asked by ahemant885, 9 months ago

Write a program in html for inserting audio file in html

Answers

Answered by vkpathak2671
4

Answer:

The HTML <audio> Element

  1. <audio controls>
  2. <source src="horse.ogg" type="audio/ogg">
  3. <source src="horse.mp3" type="audio/mpeg">
  4. </audio>.........
Answered by VISHALKUMARV22
4

<html>

<head></head>

<body>

<audio controls>

 <source src="audio-file.mp3" type="audio/mpeg">

</audio>

</body>

</html>

Similar questions