26 lines
583 B
Markdown
26 lines
583 B
Markdown
# ai-topics
|
|
|
|
A simple static HTML site providing a short overview of core Artificial
|
|
Intelligence topics: Machine Learning, Deep Learning, Natural Language
|
|
Processing, Computer Vision, and AI Ethics.
|
|
|
|
## Files
|
|
|
|
- `index.html` — the page content
|
|
- `styles.css` — the styling
|
|
|
|
## View locally
|
|
|
|
Just open `index.html` in your browser, or run a tiny static server:
|
|
|
|
```bash
|
|
python3 -m http.server 8000
|
|
```
|
|
|
|
Then visit http://localhost:8000.
|
|
|
|
## Publish
|
|
|
|
Push to Gitea and enable the repository's static site / Pages feature, or host
|
|
the files on any static hosting provider.
|