Ishis school recently organised a cultural evening for the students. She has created a web page giving details
about the event. She wants to add audio and video files to the web page. Which tags should she use to add
audio and video to the HTML5 document? Write the HTML code for creating the web page
Answers
Answered by
5
Answer:
For Video
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
For Audio:
<audio controls>
<source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
Explanation:
Similar questions