- Arrange the code entries in the proper syntax to add a video to a web page
- The user must be able to play and pause the video
-
The video has two sources,
MP4
andMOV
, with a preference forMP4
format - The video must also include subtitles and a message that displays if the user's browser doesn't support the HTML5 video tag
</video>
<track src="Videos/subtitles.vtt" kind="subtitles" srclang="en" label="English" />
<source src="Videos/Happy.mov" type="video/quicktime" />
Your browser does not support HTML5 Video
<source src="Videos/Happy.mp4" type="video/mp4" />
<video height="480" controls="controls">