diff options
author | wlnxing <77608284+wlnxing@users.noreply.github.com> | 2022-01-21 02:15:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-21 02:15:19 +0800 |
commit | d3dbfce79ad140b58898518250a5a75195692550 (patch) | |
tree | fe3e8349e68b406064051e6dddfe4c224f3168dd | |
parent | 5b49f7299b3e145ea3d8a18fdab98b06a358cb15 (diff) | |
download | translated-content-d3dbfce79ad140b58898518250a5a75195692550.tar.gz translated-content-d3dbfce79ad140b58898518250a5a75195692550.tar.bz2 translated-content-d3dbfce79ad140b58898518250a5a75195692550.zip |
Fix: Close the source tag (#3740)
-rw-r--r-- | files/zh-cn/web/media/autoplay_guide/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/media/autoplay_guide/index.html b/files/zh-cn/web/media/autoplay_guide/index.html index 332f54bfa4..6e62854697 100644 --- a/files/zh-cn/web/media/autoplay_guide/index.html +++ b/files/zh-cn/web/media/autoplay_guide/index.html @@ -70,7 +70,7 @@ original_slug: Web/媒体/Autoplay_guide <p>使用 <code>autoplay</code> 属性的{{HTMLElement("audio")}}元素就像如下:</p> <pre class="brush: html notranslate"><audio id="musicplayer" autoplay> - <source src="/music/chapter1.mp4" + <source src="/music/chapter1.mp4"> </audio> </pre> |