To add an MP4 file to your Webflow site, you’ll need to host the video externally or convert it into a supported embed format since Webflow does not support direct uploading of MP4 files.
Once your MP4 is hosted and accessible via a direct link:
Drag an Embed element from the Add panel into your Webflow page.
Paste the following HTML with your video’s direct URL:
<video width="100%" controls playsinline preload="metadata"> <source src="https://yourhost.com/yourvideo.mp4" type="video/mp4"> Your browser does not support the video tag. </video>
Make sure the URL ends in .mp4 and is publicly accessible.
You can also add attributes like autoplay
, muted
, loop
, and poster="your-thumbnail.jpg"
as needed.
To add an MP4 in Webflow, host your video externally, then embed it using a custom Embed element with the correct HTML video tag pointing to the MP4 URL. Webflow doesn't support direct MP4 file uploads, so external hosting is essential.