-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
161 lines (143 loc) · 6.28 KB
/
gallery.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coffe Craft</title>
<link rel="stylesheet" href="./styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="icon" href="./images/2bc4d6b2814aa53137984dc9c98a299b.png">
</head>
<body style="height: 100vh;background-color: #f6ebda;">
<nav>
<div sty style="color: #452b13;"="display: flex;
justify-content: center;
align-items: center;">
<img class="logo" src="./images/—Pngtree—coffee cup logo icon restaurant_8991200.png" alt="logo">
</div>
<div class="navText">
<a style="color: #452b13;" href="./index.html" class="">HOME</a >
<a style="color: #452b13;" href="./gallery.html" class="navActive">GALLERY</a >
<a style="color: #452b13;" class="" href="./contact.html">CONTACT</a >
</div>
<div>
<img id="s" class="shop" src="./images/—Pngtree—gray shopping trolley logo_4459394.png" alt="shop">
</div>
</nav>
<section class="gallery">
<div class="galleryBox">
<h1>How to use <span style="border-bottom: solid 3px #e2955a;">delivery</span> service</h1>
<div class="galleryMiniBox">
<div class="galleryMbox">
<img class="galleryimg" src="./images/food-truck 1.png" alt="food-truck">
<div style=" display: flex;
flex-direction: column;
justify-content: center;
align-items: center;">
<strong>choose your coffe</strong>
<p>there are 20+ coffes for you</p>
</div>
</div>
<div class="galleryMbox">
<img class="galleryimg" src="./images/coffee-cup 1.png" alt="coffee-cup">
<div style=" display: flex;
flex-direction: column;
justify-content: center;
align-items: center;">
<strong>choose your coffe</strong>
<p>there are 20+ coffes for you</p>
</div>
</div>
<div class="galleryMbox">
<img class="galleryimg" src="./images/coffee-cup 2.png" alt="coffee-cup2">
<div style=" display: flex;
flex-direction: column;
justify-content: center;
align-items: center;">
<strong>choose your coffe</strong>
<p>there are 20+ coffes for you</p>
</div>
</div>
</div>
</div>
</section>
<section class="produit">
<h1 class="title">Special menu <span style="border-bottom: solid 3px #e2955a;"> for you</span> </h1>
<div class=" produitBox">
<div class="pBox">
<div class="imgBox">
<img class="produitImg" src="./images/produitimg1.jpg" alt="produit1">
</div>
<div class="produitText">
<div class="pnameBox">
<h3>Hot Milk</h3>
<i class="fa-solid fa-cart-shopping"></i>
</div>
<p>hot milk with less sugar</p>
</div>
</div>
<div class="pBox">
<div class="imgBox">
<img class="produitImg" src="./images/produit2.jpg" alt="produit2">
</div>
<div class="produitText">
<div class="pnameBox">
<h3>Coffe Ice Cream</h3>
<i class="fa-solid fa-cart-shopping"></i>
</div>
<p>hot milk with less sugar</p>
</div>
</div>
<div class="pBox">
<div class="imgBox">
<img class="produitImg" src="./images/produit3.jpg" alt="produit3">
</div>
<div class="produitText">
<div class="pnameBox">
<h3>Cappucino</h3>
<i class="fa-solid fa-cart-shopping"></i>
</div>
<p>Hot Cappucino</p>
</div>
</div>
<div class="pBox">
<div class="imgBox">
<img class="produitImg" src="./images/produit4.jpg" alt="produit4">
</div>
<div class="produitText">
<div class="pnameBox">
<h3>Maccacinno</h3>
<i class="fa-solid fa-cart-shopping"></i>
</div>
<p>Hot Moccacino</p>
</div>
</div>
<div class="pBox">
<div class="imgBox">
<img class="produitImg" src="./images/produit5.jpg" alt="produit5">
</div>
<div class="produitText">
<div class="pnameBox">
<h3>Legend coffe</h3>
<i class="fa-solid fa-cart-shopping"></i>
</div>
<p>Hot Moccacino</p>
</div>
</div>
<div class="pBox">
<div class="imgBox">
<img class="produitImg" src="./images/produit6.jpg" alt="produit6">
</div>
<div class="produitText">
<div class="pnameBox" >
<h3>Tallian</h3>
<i class="fa-solid fa-cart-shopping"></i>
</div>
<p>Normal Coffe for you</p>
</div>
</div>
</div>
</section>
</body>
</html>
<!-- rem === 17px -->