Your can add one or more paragraphs of text here to introduce and describe the video on this page. If you don't want any text above the video you can remove the code, from 'start of content block 1' to 'end of content block 1' in the HTML/CSS editor.
You can also embed a YouTube video. The only thing you need know is the video_id of the video you want to show.
The first thing you need to do is to open the video on YouTube and click the 'Share' button underneath the video. The link shown should look something like this:
https://youtu.be/5-35O0bTz1M
The last part of the link (after the slash) is the video_id we need. Select this part of the link and press Ctrl + C to copy.
Open this page in the HTML/CSS editor and scroll down until you get to the 'iframe' tag with link to the test video. The link has the following format:
https://www.youtube.com/embed/VIDEO_ID
Select the video_id part of the test video link in the 'source' parameter of the iframe tag and press Ctrl + V to paste.
You can append various player parameters directly to the end of the video link to modify how the video is played. To append player parameters to the link you first have to add a question mark (?) to the end of the link before you add any parameters. The first parameter which should always be added is rel=0. This ensures that no related videos from other channels are shown after the video file has played. However, related videos from the same channel are shown. If you add &autoplay=1 to the link, the video will start playing as soon as it is ready. If you add &loop=1 to the link, it will start over again every time it is finished. If you add &mute=1 to the link, the audio output of the video is muted. After adding all the parameters your link could look something like this:
https://www.youtube.com/embed/5-35O0bTz1M?rel=0&autoplay=1&loop=1&mute=1
After watching the video, please continue to the next page.