显然,在 Web 开发方面,我完全是个菜鸟。我只需要帮助制作一个嵌入视频的简单 html 文件。我不能使用优酷。我只需要嵌入本地文件,它不起作用。
<!DOCTYPE html>
<head>
<title>Testing</title>
</head>
<body>
<video id="0" controls width="502" height="479">
<source src="OWA tutorial.webm" type='video/webm'>
<source src="OWA tutorial.mp4" type='video/mp4'>
<p>Video is not visible, most likely your browser does not support HTML5 video</p>
</video>
</body>
</html>
这行不通。“OWA tutorial.mp4”与 html 文件位于同一文件夹中。我究竟做错了什么?