-
Notifications
You must be signed in to change notification settings - Fork 0
/
lunch.html
37 lines (33 loc) · 904 Bytes
/
lunch.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Lunch Menu - Ground Up</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=Abel&family=Rancho&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="wrapper">
<header>
<a href="index.html"><img src="img/logo.svg" class="logo" alt="Ground Up"></a>
<nav>
<ul>
<li><a href="about.html">About Us</a></li>
<li><a href="menu.html" class="button">Menu</a></li>
</ul>
</nav>
</header>
<div class="hero">
<h1>Lunch Menu</h1>
<h2>Midday Drinks</h2>
</div>
<main>
<h3>Drinks</h3>
</main>
</div>
<script></script>
</body>
</html>