DONT ADD ANYTHING HERE!

  1. Arrange the code entries in the proper syntax to add a video to a web page
  2. The user must be able to play and pause the video
  3. The video has two sources, MP4 and MOV, with a preference for MP4 format
  4. 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"> 

Example

Reference