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
31 lines
914 B
HTML
31 lines
914 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>NASA Photo of the Day</title>
|
|
<link rel="stylesheet" href="styles.css" />
|
|
</head>
|
|
<body>
|
|
<main class="card">
|
|
<h1>NASA Photo of the Day</h1>
|
|
<p class="sub">Fetched through our own little backend — the API key stays hidden.</p>
|
|
|
|
<p id="status" class="status" role="status">Loading today's photo…</p>
|
|
|
|
<figure id="figure" hidden>
|
|
<img id="image" alt="" />
|
|
<figcaption>
|
|
<h2 id="title"></h2>
|
|
<p id="date" class="date"></p>
|
|
<p id="explanation" class="explanation"></p>
|
|
<p id="credit" class="credit"></p>
|
|
</figcaption>
|
|
</figure>
|
|
|
|
<button id="reload" class="btn">Load again</button>
|
|
</main>
|
|
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|