To determine if a website was built using Webflow, look for specific markers in the source code that are common across Webflow-exported or hosted projects.
webflow
in the CSS or JavaScript file paths, such as:/css/webflow.css
or webflow.js
https://uploads-ssl.webflow.com
, https://assets.website-files.com
w-nav
, w-container
, w-button
, w-form
, etc.w-
prefixes are deliberate and signal Webflow elements/components.<meta name="generator" content="Webflow">
Webflow.push
or Webflow.require
patterns in inline scripts.webflow.io
(e.g., yoursite.webflow.io) before going live on a custom domain.To verify if a site was built with Webflow, inspect the source code for Webflow-hosted assets, w-
class names, a Webflow generator meta tag, and specific JS behavior like Webflow.push
. These indicators collectively confirm Webflow usage.