How to embed mp4 video in HTML pages?

I have a mp4 video file. How to embed it video in HTML pages?

I use this piece of code:

In HTML:

<video class="movie" src="path/to/file.mp4" controls></video>

The CSS for “movie” class:

.movie {
    max-width:1000px;
}

Here is one example.

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *