diff --git a/guide/english/html/tutorials/embedding-youtube-videos/index.md b/guide/english/html/tutorials/embedding-youtube-videos/index.md index 89067f4f9b..47a2abac45 100644 --- a/guide/english/html/tutorials/embedding-youtube-videos/index.md +++ b/guide/english/html/tutorials/embedding-youtube-videos/index.md @@ -21,4 +21,22 @@ src="https://www.youtube.com/embed/v8kFT4I31es"> ``` -Inserted values are recommended, and feel free to change them however you like. +#### Autoplay +What should we do if we would like to make this player starting automatically playing? Just add to your link value `?autoplay=1`. But be careful, because it can be annoying for a lot of people visiting your webpage. + +```html + +``` + +## YouTube Loop + +Value 0 (default): The video will play only once.
+Value 1: The video will loop (forever). + +``` + +```