Home Tutorials HTML Tutorial Video
Video

Video


37. Video

The <video> element embeds video content with built-in playback controls. It also commonly uses <source>.

Syntax

<video controls width="300">
    <source src="movie.mp4" type="video/mp4">
</video>

Example

<video controls width="320">
    <source src="lesson.mp4" type="video/mp4">
</video>

Output

A video player appears with standard controls.
Example

🏋️ Test Yourself With Exercises

Take our quiz on Video to test your knowledge.

Browse Quizzes »