Files
mini-pages/QUICKSTART.md

577 B

Quick Start

View locally

Open any .html file directly in a browser:

open eight-drunken-styles.html
open liquor-tasting.html
open shoe-size.html

No server, no install, no build step.

Serve with a local server

If you prefer a local dev server (e.g. for consistent font loading):

# Python
python3 -m http.server 8000

# Node
npx serve .

Then visit http://localhost:8000.

Add a new page

  1. Create a new .html file in the project root.
  2. Keep it self-contained — inline all CSS and JS.
  3. Update README.md with the new entry.