The latest version of HTML (i.e. HTML5) makes it extremely easy to add video to a web page. HTML5 allows you to use a <video> tag, which, believe it or not, embeds video right into your web page!
if you have a video file then you need an image to represent your thumbnail. To create a link that will allow someone to download the video is as simple as.
<a href="url of your video file">
<img src="url of the thumbnail image"/>
</a>
It is very easy
<video width="400" height="210" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.webm" type="video/webm">
</video>
Comment