Add README, QUICKSTART, and SUMMARY docs
This commit is contained in:
33
QUICKSTART.md
Normal file
33
QUICKSTART.md
Normal 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.
|
||||
Reference in New Issue
Block a user