plain html · no frameworks

Build things that
actually ship.

A minimal demo page showing what clean HTML, a handful of CSS variables, and zero dependencies can look like.

Everything you need.

Zero dependencies

Pure HTML & CSS. No build step, no npm, no config files.

📐

CSS variables

A compact token system — swap a palette in one block.

📱

Responsive

Auto-fit grid and clamp() typography scale to any screen.

🎨

Dark theme

Deep background, subtle surfaces, and gradient accents.

Just copy & paste.

style.css
/* one token system to rule them all */
:root {
  --bg:      #0f0f13;
  --accent:  #7c6aff;
  --text:    #e8e8f0;
  --radius:  10px;
}

body {
  background: var(--bg);
  color:      var(--text);
  font-family: system-ui, sans-serif;
}

Plain HTML still wins.

Sometimes the fastest path to a working demo is no framework at all — just a single file you can open in any browser, share over email, or drop into any project without a second thought.