21 bite-sized beginner tutorials (Web Basics, APIs & Data), the 8-backend blog engine series, 4 blog frontends, 2 React starters, 3 NixOS desktops and 4 Rust API/pipeline boilerplates. Every folder is a complete, self-contained project with its own README. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01VGNxPf9PrSG2kzrxSvn45Y
26 lines
727 B
HTML
26 lines
727 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Random Quote Machine</title>
|
|
<link rel="stylesheet" href="styles.css" />
|
|
</head>
|
|
<body>
|
|
<main class="card">
|
|
<h1>Random Quote Machine</h1>
|
|
<p class="sub">A fresh bit of wisdom on demand.</p>
|
|
|
|
<figure class="quote">
|
|
<blockquote id="quote" class="text"></blockquote>
|
|
<figcaption id="author" class="author"></figcaption>
|
|
</figure>
|
|
|
|
<p id="status" class="status" role="status"></p>
|
|
|
|
<button id="new" class="btn" type="button">New quote</button>
|
|
</main>
|
|
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|