Recall & Review
beginner
What is the purpose of the <video> tag in HTML?
The <video> tag is used to embed video content in a web page so users can watch videos directly in their browser.
Click to reveal answer
beginner
Which attribute makes a video start playing automatically when the page loads?
The
autoplay attribute makes the video start playing automatically without user interaction.Click to reveal answer
beginner
How do you add controls like play, pause, and volume to a video?
Add the
controls attribute inside the <video> tag to show built-in video controls.Click to reveal answer
intermediate
What is the purpose of the <source> tag inside a <video> element?
The <source> tag specifies the video file and its format. Multiple <source> tags can provide different formats for browser compatibility.
Click to reveal answer
intermediate
Why should you include the <track> tag inside a <video> element?
The <track> tag adds subtitles or captions to the video, improving accessibility for users who are deaf or hard of hearing.
Click to reveal answer
Which attribute is used to show video controls like play and pause?
✗ Incorrect
The
controls attribute adds built-in video controls for user interaction.How do you make a video play automatically when the page loads?
✗ Incorrect
The
autoplay attribute makes the video start playing automatically.What tag do you use inside <video> to provide multiple video formats?
✗ Incorrect
The
tag specifies different video files and formats for browser support.Which tag is important for accessibility to add captions to videos?
✗ Incorrect
The
tag adds subtitles or captions to help users who need them.What happens if you add the
loop attribute to a video?✗ Incorrect
The
loop attribute makes the video start over automatically after it ends.Explain how to embed a video in a web page using the
Think about how you provide fallback video formats and user controls.
You got /4 concepts.
Describe why adding captions with the
Consider users who cannot hear the audio.
You got /4 concepts.