<video>
tag inside a w-background-video
div./videos
folder, or check for external embeds if the tag or folder is missing.If you're not using Webflow hosting and can't find a 'documents'
folder, you may be exporting your site and self-hosting it. In that case, here's where to locate the HTML code for the background video in your exported Webflow project.
'background-video'
.<div>
with a class like w-background-video or w-background-video-wrapper.<video>
tag with autoplay, muted, playsinline, and loop attributes..mp4
or .webm
format, like:<video autoplay loop muted playsinline>
<source src="videos/your-background-video.mp4" type="video/mp4">
/videos
Folder in Exportdocuments
folder, videos are stored in a videos
folder in the export if you've added a Background Video element in Webflow.<iframe>
, <video>
, or any external video URL.If you're self-hosting, open the exported HTML files and look for a <video>
tag inside a w-background-video div. The source video will usually be in a /videos
folder. If that folder or tag is missing, the video may be externally hosted or not properly exported.