aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcopytime <zhou.yuxuan@outlook.com>2022-01-20 01:09:01 +0800
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2022-01-21 00:19:01 +0900
commit5b49f7299b3e145ea3d8a18fdab98b06a358cb15 (patch)
treeb91ba1bc47dad8fd7a71f4535c97487fcf611797
parent4e22f8745ea5d522610c331fd470a3010399463b (diff)
downloadtranslated-content-5b49f7299b3e145ea3d8a18fdab98b06a358cb15.tar.gz
translated-content-5b49f7299b3e145ea3d8a18fdab98b06a358cb15.tar.bz2
translated-content-5b49f7299b3e145ea3d8a18fdab98b06a358cb15.zip
Update index.html
Fix: Close the source tag with '>'
-rw-r--r--files/ja/web/media/autoplay_guide/index.html2
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">&lt;audio id="musicplayer" autoplay&gt;
- &lt;source src="/music/chapter1.mp4"
+ &lt;source src="/music/chapter1.mp4"&gt;
&lt;/audio&gt;
</pre>