29 lines
808 B
HTML
29 lines
808 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>7am</title>
|
|
<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">
|
|
</head>
|
|
|
|
<body>
|
|
<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>
|
|
</body>
|
|
|
|
</html>
|