1<!-- Answer to: "video tag html" -->
2
3<video width="320" height="240" controls onended="alert('the vedio has ended')">
4 <source src="movie.mp4" type="video/mp4">
5 <source src="movie.ogg" type="video/ogg">
6 Your browser does not support the video tag.
7</video>
8
9<!-- The <video> tag is used to play videos... obviously -->