Files
7am/web/index.html

32 lines
945 B
HTML
Raw Normal View History

2025-05-10 00:36:38 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
2025-05-10 14:58:41 +01:00
<title>7am Weather</title>
2025-05-10 00:36:38 +01:00
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap" rel="stylesheet">
<link href="./style.css" rel="stylesheet">
2025-05-10 14:58:41 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2025-05-10 00:36:38 +01:00
</head>
<body>
2025-05-10 14:58:41 +01:00
<main>
<h1>7am</h1>
<h2>Daily weather updates delivered to you at 7am.</h2>
<hr class="divider" />
<ul>
<li><a href="/london">London</a></li>
<li><a href="/sf">San Francisco</a></li>
<li><a href="/sj">San Jose</a></li>
<li><a href="/la">Los Angeles</a></li>
<li><a href="/nyc">New York City</a></li>
<li><a href="/tokyo">Tokyo</a></li>
</ul>
</main>
2025-05-10 00:36:38 +01:00
</body>
</html>