1
Fork 0
random-quote/index.html
Leonardo Devai c6d735942b Add the devai.io boilerplate library: 42 runnable projects
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
2026-07-19 16:31:48 +02:00

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>