34 lines
577 B
Markdown
34 lines
577 B
Markdown
# 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.
|