Problem Statement
Which attributes are commonly used with the <video> element?
Explanation
The video element in HTML5 allows embedding videos without plugins. Common attributes include src (source URL), controls (shows play/pause buttons), autoplay (starts automatically), loop (repeats), and muted. It provides built-in media controls for accessibility.
Code Solution
SolutionRead Only
<video src="demo.mp4" controls autoplay loop width="400"></video>
