我尝试在我的页面上添加带有 HTML 的 YouTube 视频,但它不起作用
I tried adding a YouTube video with HTML on my page but it's not working
<video width="300px"
height="300px" controls>
<source
src"https://YouTube.be/y8yv4pn
o7qc" type="video/mp4>
<video>
标签用于您计算机上的本地文件。另外,请确保正确格式化元素,如本网站中所示:https://www.w3schools.com/html/html5_video.asp。
如果你要下载一个视频,并在你的项目中使用它,它看起来像这样:
<video width="300px" height="300px" controls>
<source src="./myvideo.mp4" type="video/mp4">
</video>
如果您想使用 Youtube 视频,标签是:<iframe>
。这是文档:https://www.w3schools.com/html/html_youtube.asp。这是一些示例代码:
<iframe width="300px" height="300px" src="https://youtube.com/video"></iframe>
<video width="300px"
height="300px" controls>
<source
src"https://YouTube.be/y8yv4pn
o7qc" type="video/mp4>
<video>
标签用于您计算机上的本地文件。另外,请确保正确格式化元素,如本网站中所示:https://www.w3schools.com/html/html5_video.asp。
如果你要下载一个视频,并在你的项目中使用它,它看起来像这样:
<video width="300px" height="300px" controls>
<source src="./myvideo.mp4" type="video/mp4">
</video>
如果您想使用 Youtube 视频,标签是:<iframe>
。这是文档:https://www.w3schools.com/html/html_youtube.asp。这是一些示例代码:
<iframe width="300px" height="300px" src="https://youtube.com/video"></iframe>