+ 2
How to put a video in the html ?
not a video link.
4 Answers
+ 11
<video src="url" type="video/mp4" controls>
+ 5
HTML5:
<videoĀ width="320"Ā height="240"Ā controls>
Ā Ā <sourceĀ src="movie.mp4"Ā type="video/mp4">
Ā Ā <sourceĀ src="movie.ogg"Ā type="video/ogg">
Your browser does not support the video tag.
</video>
HTML4:
<embed src="movie.mp4" autostart="false" height="30" width="144" />
+ 1
ok
0
Ok