<!DOCTYPE html>
<html>
<head>
<title>HTML Video Example</title>
</head>
<body>
<h1>Video Example</h1>
<!-- 使用<video>标签嵌入视频文件 -->
<video width="320" height="240" controls>
<!-- 指定视频源,浏览器会根据支持的格式选择播放 -->
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
<!-- 如果浏览器不支持<video>标签,则显示以下文本 -->
Your browser does not support the video tag.
</video>
</body>
</html>
<video> 标签用于在网页中嵌入视频。width 和 height 属性定义了视频播放器的尺寸。controls 属性添加了播放、暂停和音量控件。<source> 标签指定了不同格式的视频文件,浏览器会根据支持的格式自动选择播放。<video> 标签,用户将看到标签内的文本提示。上一篇:html网页代码
下一篇:html换行标签
Laravel PHP 深圳智简公司。版权所有©2023-2043 LaravelPHP 粤ICP备2021048745号-3
Laravel 中文站