-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseasonal_drinks.html
94 lines (88 loc) · 4.86 KB
/
seasonal_drinks.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="css/menu.css">
<style>
body {
background-image: url("/images/gradient.jpg");
background-size: cover;
background-repeat: no-repeat;
}
</style>
<title>Drinks Menu</title>
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg fixed-top" style="background-color: #f3d4c3">
<div class="container">
<a class="navbar-brand d-flex justify-content-between align-items-center order-lg-0" href="index.html">
<img src="/images/logo.jpg" alt="Site icon" width="50" height="50">
<span class="text-uppercase fw-medium ms-2">Espresso Elegance</span>
</a>
</div>
</nav>
<!-- Card 1 -->
<section class="py-5 mt-5">
<div class="container px-4 px-lg-5 mt-5">
<div class="row gx-4 gx-lg-5 row-cols-2 row-cols-md-3 row-cols-xl-4 justify-content-center">
<div class="col mb-5">
<div class="card h-100">
<img class="card-img-top text-center" src="images/hazelnut.jpg" alt="Hazelnut">
<h5 class="fw-bolder text-center">Hazelnut</h5>
<div class="text-center">
<p>
A creamy symphony of espresso and steamed milk, kissed with the warm, nutty essence of hazelnuts. It's a harmonious blend that wraps you in a cozy, aromatic embrace, making every sip a moment of pure delight.
</p>
<a class="btn btn-outline-dark mt-auto">Add To Cart</a>
</div>
</div>
</div>
<!-- Card 2 -->
<div class="col mb-5">
<div class="card h-100">
<img class="card-img-top text-center" src="images/mocha.jpg" alt="Mocha">
<h5 class="fw-bolder text-center">Mocha</h5>
<div class="text-center">
<p>
Experience pure decadence with our Mocha, where the bold richness of espresso meets the silky allure of chocolate. It's a luscious, harmonious fusion of two beloved flavors, creating a symphony of indulgence in every velvety sip.
</p>
<a class="btn btn-outline-dark mt-auto">Add To Cart</a>
</div>
</div>
</div>
<!-- Card 3 -->
<div class="col mb-5">
<div class="card h-100">
<img class="card-img-top text-center" src="images/pumpkin_spice.jpg" alt="Pumpkin Spice">
<h5 class="fw-bolder text-center">Pumpkin Spice</h5>
<div class="text-center">
<p>
This delightful beverage combines rich espresso with velvety steamed milk, infused with a harmonious blend of seasonal spices and the unmistakable essence of pumpkin. Topped with a cloud of whipped cream and a sprinkle of pumpkin spice.
</p>
<a class="btn btn-outline-dark mt-auto">Add To Cart</a>
</div>
</div>
</div>
<!-- Card 4 -->
<div class="col mb-5">
<div class="card h-100">
<img class="card-img-top text-center" src="images/caramel_iced_white.jpg" alt="Caramel Iced White Mocha">
<h5 class="fw-bolder text-center">Caramel Iced White Mocha</h5>
<div class="text-center">
<p>
Quench your cravings with our Caramel Iced White Mocha—a refreshingly cool twist on classic indulgence. Smooth white chocolate meets a sweet caramel drizzle, creating a harmonious blend that's as satisfying as it is refreshing. Perfectly chilled and utterly delightful.
</p>
<a class="btn btn-outline-dark mt-auto">Add To Cart</a>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>