如何在 html 上嵌入 mp4 视频?

How do I embed mp4 videos on html?

我想制作一个包含视频的网站,如何在 html 上嵌入 mp4 视频?我试过 <embed src="helloworld.mp4"> 但没用。

您应该将它们上传到主机上,然后嵌入它们。

(for example youtube, dailymotion, firedrive, sockshare)

在html5中你可以使用视频标签

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

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

    </body>
    </html>