<source>
tags.<video>
tag with controls, autoplay, muted, loop, and playsinline attributes.If your HTML5 video is not displaying in Webflow's Embed HTML widget but works when accessed directly in a browser, there are a few potential causes. Follow these steps to troubleshoot:
<source>
elements:<source src="your-video.mp4" type="video/mp4">
<source src="your-video.webm" type="video/webm">
Ensure you are using a valid HTML5 <video>
tag. Example:
<video controls autoplay muted loop playsinline> <source src="your-video.mp4" type="video/mp4"> Your browser does not support the video tag.</video>
controls
adds playback options.autoplay muted loop playsinline
helps ensure videos start as expected on mobile.<source src="https://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4">
The most common issues are CORS restrictions, incorrect file formats, or Webflow’s embed limitations. Try hosting the video somewhere with public access, ensure it’s an MP4 (H.264) format, and use valid HTML5 <video>
markup inside the Embed HTML widget. Always test the page in Preview Mode or a published version to see the final result.