Heritage collection

Free CSS templates.

Free website templates was the original heart of CSS Crème, and it still is. We're rebuilding the collection for 2026 — modern, responsive, dependency-free HTML and CSS you can read, learn from, and ship. No frameworks required, no sign-up, no watermarks.

Browse by type

S

SaaS landing

Hero, feature grid, pricing and CTA — the modern product page.

P

Portfolio

Clean, type-led layouts to show work without the noise.

B

Blog & magazine

Readable article layouts with strong typographic rhythm.

D

Dashboard

Sidebar, cards and data tables built on CSS Grid.

A

Agency & business

Services, team and contact sections that convert.

D

Docs & support

Sidebar navigation, search and tidy content columns.

Grab a starter

A complete, responsive single-file page to build on. Copy it into an index.html and open it — that's the whole setup.

index.html
<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Starter</title>
  <style>
    :root { --ink:#1a1a1a; --bg:#fafafa; --accent:#6b5bff; }
    * { box-sizing:border-box; margin:0; }
    body { font:16px/1.6 system-ui,sans-serif; color:var(--ink); background:var(--bg); }
    .wrap { max-width:720px; margin:0 auto; padding:80px 24px; }
    h1 { font-size:clamp(2rem,6vw,3.2rem); line-height:1.1; letter-spacing:-.02em; }
    p { margin:18px 0 0; color:#555; font-size:1.15rem; }
    .btn { display:inline-block; margin-top:28px; padding:13px 26px; border-radius:999px;
           background:var(--accent); color:#fff; text-decoration:none; font-weight:600; }
  </style>
</head>
<body>
  <main class="wrap">
    <h1>Ship something today.</h1>
    <p>A clean, responsive starting point. Edit the variables, drop in your content, deploy.</p>
    <a class="btn" href="#">Get started</a>
  </main>
</body>
</html>

What makes a good template?

A template earns its place by being a clean starting point, not a maze to untangle. The ones worth keeping share a few traits: a sensible type scale, layout driven by CSS Grid and Flexbox rather than brittle hacks, custom properties for color and spacing so a rebrand is a five-minute job, and markup that stays readable months later.

Every template here aims for that bar. Pair one with the gradient generator for a hero background, lift cards with the box-shadow generator, and browse the inspiration when you need a spark of direction.