Video HTML





If you have a video file that you'd like to embed directly into a Page, start by uploading it into your Personal File Hosting area, inside the content editor: Images → . Then, copy the video's URL and use it wherever it is needed, including the Video Backdrop.

After uploading a video file, open the page's code view and create a video tag to embed your video file:

<video width="1000" height="720" controls="">
    <source src="https://static.cargo.site/assets/backdrop/video/DTLA_1950.mov" type="video/mp4">
</video>


The controls attribute will expose basic playback controls for your video; you can also set the video to autoplay, loop, or be muted as in this example:

<video width="1000" height="720" autoplay="" muted="" loop="" playsinline="">
    <source src="https://static.cargo.site/assets/backdrop/video/DTLA_1950.mov" type="video/mp4">
</video>