I want to attach a video in my HTML document but I don't know how to attach it.I can attach images of various type
but I don't know how to attach the video file.Is it possible to attach the file.Please respond quickly.Thanks.
How to attach video in HTML document?
Try this code..
<video width="600" height="400" controls="controls">
 <source src="movie.mp4" type="video/mp4">
 <source src="movie.ogg" type="video/ogg">
 <source src="movie.webm" type="video/webm">
<object data="movie.mp4" width="600" height="400">
 <embed src="movie.swf" width="600" height="400">
</object>
</video>