HTML VIDEO: HTML5 has introduced the <video> tag to embed video into the webpage directly without using the plug-ins.
Syntax:
1 2 3 4 5 6 |
<video attributes > <source src="address" type="video/mp4"> Your browser does not support the video tag. </video> |
1 2 3 4 5 6 |
<video width="320" height="240" controls> <source src="mountain.mp4" type="video/mp4"> Your browser does not support the video tag. </video> |
Output:
1 2 3 |
<video controls="controls" width="320" height="240" data-mce-fragment="1"></video> |
1 2 3 |