Static Site Hosting

Static site hosting serves pre-built HTML/CSS/JS files. No server-side processing at request time — the entire site is compiled during build and served as flat files from a CDN.

Why It’s Great for Free

Static hosting is the most generous free tier category because:

  • Serving a flat file costs nearly nothing (no compute per request)
  • CDN caching means most requests never hit origin
  • Three major platforms offer genuinely unlimited or near-unlimited free tiers

Top Platforms

PlatformBandwidthBuildsBest For
cloudflare-pagesUnlimited500/moEverything static — best all-round
vercel100 GB6,000/moNext.js / heavy build needs
netlify~30 GB (credit)~20/moLegacy projects, form handling
github-pages100 GB10/hrQuick repos, personal sites

The Winner (2026)

Cloudflare Pages — unlimited bandwidth is the killer feature. The other free tiers can be burned by a popular post on Hacker News or Reddit. Cloudflare’s unlimited egress means you don’t have to worry.

What You Can Build

  • Marketing sites, landing pages
  • Blogs (Hugo, Jekyll, Astro, 11ty)
  • Documentation sites (Docusaurus, ReadTheDocs)
  • Portfolios
  • Simple web apps that call external APIs (no own backend needed)

What You Can’t Build

  • Anything needing server-side rendering at request time (Next.js SSR needs Vercel)
  • User authentication without an external auth service
  • Server-side form handling without a third-party service (Netlify Forms is an exception)
  • Backend APIs