-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.html
More file actions
40 lines (35 loc) · 978 Bytes
/
Copy pathmenu.html
File metadata and controls
40 lines (35 loc) · 978 Bytes
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
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Menu - Bréw Connect</title>
<link rel="stylesheet" href="/main.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"/>
<link rel="icon" type="png" href="logo2.png">
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar">
<div class="logo">
<a href="/">
<img src="logo2.png" alt="Bréw Connect Logo" class="navbar-logo">
Bréw Connect
</a>
</div>
<ul class="nav-links">
</ul>
</nav>
<!-- Menu Section -->
<section class="menu-section">
<h1>Our Coffee Menu</h1>
<div class="menu-grid">
</div>
</section>
<!-- Footer -->
<footer class="footer">
<p>© 2025 Bréw Connect. All rights reserved.</p>
</footer>
<script src="/script.js"></script>
</body>
</html>