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
27 lines
769 B
HTML
27 lines
769 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Stopwatch</title>
|
|
<link rel="stylesheet" href="styles.css" />
|
|
</head>
|
|
<body>
|
|
<main class="card">
|
|
<h1>Stopwatch</h1>
|
|
<p class="sub">Start, stop, reset — and record lap times.</p>
|
|
|
|
<div id="display" class="display" role="timer" aria-live="off">00:00.00</div>
|
|
|
|
<div class="controls">
|
|
<button id="startStop" class="btn">Start</button>
|
|
<button id="lap" class="btn ghost">Lap</button>
|
|
<button id="reset" class="btn ghost">Reset</button>
|
|
</div>
|
|
|
|
<ol id="laps" class="laps"></ol>
|
|
</main>
|
|
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|