+ 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