Add README, QUICKSTART, and SUMMARY docs

This commit is contained in:
2026-04-12 14:28:20 +08:00
parent 04907e1ac6
commit 22f3667a17
3 changed files with 89 additions and 0 deletions

33
QUICKSTART.md Normal file
View File

@@ -0,0 +1,33 @@
# Quick Start
## View locally
Open any `.html` file directly in a browser:
```bash
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):
```bash
# 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.