1<video width="320" height="240" controls>
2 <source src="movie.mp4" type="video/mp4">
3 <source src="movie.ogg" type="video/ogg">
4Your browser does not support the video tag. <!-- Text to be shown incase browser doesnt support html5 -->
5</video>
1<video width="200" height="150" controls>
2<source src="vid.mp4" type="video/mp4">
3<source src="vid.ogg" type="video/ogg">
4No video support.
5</video>
6
1
2<video width="320" height="240" controls autoplay muted>
3
4 <source src="movie.mp4" type="video/mp4">
5
6 <source src="movie.ogg" type="video/ogg">
7
8Your browser does not support the video tag.
9
10</video>
11