Day 19: Video Embedded
HTML Masterclass
Current Task
Objective
Play video natively in HTML.
Step 1: Create a <video> tag with width="320", height="240", and controls.
Step 2: Inside, add a <source> tag with src="movie.mp4" and type="video/mp4".
index.html
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4" />
</video>
* Hint: Correct characters turn green, incorrect ones turn red.
Live Preview
🖼️
Verify your code to see the preview