-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpage.html
39 lines (37 loc) · 1.11 KB
/
page.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
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="header">
<div class="header-container">
<!-- Logo -->
<div class="logo">
<img src="assets/logo.png" alt="Starbucks Logo" />
</div>
<!-- Navigation Links -->
<nav class="nav-links">
<a href="#"><strong>MENU</strong></a>
<a href="#"><strong>REWARDS</strong></a>
<a href="#"><strong>GIFT CARDS</strong></a>
</nav>
<!-- Right-side Buttons -->
<div class="header-right">
<a href="#" class="store-locator"
><i class="fas fa-map-marker-alt"></i> Find a store</a
>
<a href="#" class="sign-in-btn">Sign in</a>
<a href="#" class="join-now-btn">Join now</a>
</div>
</div>
<!-- Bottom Bar -->
<div class="bottom-bar">
<p>STARBUCKS' REWARDS</p>
</div>
</header>
</body>
</html>