1

I want to make a site that has videos, how do I embed mp4 videos on html? I have tried <embed src="helloworld.mp4"> but it doesn't work.

Komninos
  • 96
  • 1
  • 1
  • 10

3 Answers3

9

In html5 you can use video tag

<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
</video>
Simon
  • 219
  • 1
  • 4
0

You should upload them on a host, then embed them.

(for example youtube, dailymotion, firedrive, sockshare)

o07l
  • 25
  • 4
0
   <html>
    <body>

    <video width="320" height="240" controls>
      <source src="video.mp4" type="video/mp4">
   </video>

    </body>
    </html>
pcs
  • 1,864
  • 4
  • 25
  • 49
Parth Dhorda
  • 712
  • 1
  • 8
  • 32