diff options
author | copytime <zhou.yuxuan@outlook.com> | 2022-01-20 01:09:01 +0800 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-21 00:19:01 +0900 |
commit | 5b49f7299b3e145ea3d8a18fdab98b06a358cb15 (patch) | |
tree | b91ba1bc47dad8fd7a71f4535c97487fcf611797 /files | |
parent | 4e22f8745ea5d522610c331fd470a3010399463b (diff) | |
download | translated-content-5b49f7299b3e145ea3d8a18fdab98b06a358cb15.tar.gz translated-content-5b49f7299b3e145ea3d8a18fdab98b06a358cb15.tar.bz2 translated-content-5b49f7299b3e145ea3d8a18fdab98b06a358cb15.zip |
Update index.html
Fix: Close the source tag with '>'
Diffstat (limited to 'files')
-rw-r--r-- | files/ja/web/media/autoplay_guide/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/web/media/autoplay_guide/index.html b/files/ja/web/media/autoplay_guide/index.html index 51d958e791..d47057b8e5 100644 --- a/files/ja/web/media/autoplay_guide/index.html +++ b/files/ja/web/media/autoplay_guide/index.html @@ -81,7 +81,7 @@ translation_of: Web/Media/Autoplay_guide <p><code>autoplay</code> 属性を使用する {{HTMLElement("audio")}} 要素は、次のようになります。</p> <pre class="brush: html"><audio id="musicplayer" autoplay> - <source src="/music/chapter1.mp4" + <source src="/music/chapter1.mp4"> </audio> </pre> |