Write a program in html for inserting audio file in html
Answers
Answered by
4
Answer:
The HTML <audio> Element
- <audio controls>
- <source src="horse.ogg" type="audio/ogg">
- <source src="horse.mp3" type="audio/mpeg">
- </audio>.........
Answered by
4
<html>
<head></head>
<body>
<audio controls>
<source src="audio-file.mp3" type="audio/mpeg">
</audio>
</body>
</html>
Similar questions