<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<!-- 视频 标签 width 和 height 也是video特有的属性
controls 控制条 autoplay 自动播放 muted静音播放
循环播放 loop 设置封面 poster
-->
<!-- <video controls poster="../音视频/ad7.jpeg" loop muted width="300px" src="../音视频/1.mp4"></video> -->
<!-- 第二种视频格式 -->
<video muted autoplay>
<source src="../音视频/1.mp4" type="video/mp4" />
</video>
<!-- 音频标签 -->
<audio autoplay muted src="../音视频/1.mp3"></audio>
<!-- 第二种音频格式 -->
<audio muted id="vd" controls autoplay muted>
<source src="../音视频/1.mp3" type="audio/mp3" />
</audio>
<script>
</script>
</body>
</html>