-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
391 lines (375 loc) · 15.8 KB
/
index.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Responsive coffee shop</title>
<!---font awesome cdn link--->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
/>
<!---custom css file link--->
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!--header section starts-->
<header class="header">
<a href="#" class="logo"><img src="images/logo.png" alt="cafè" /> </a>
<nav class="navbar">
<a href="#home">home</a>
<a href="#about">about</a>
<a href="#menu">menu</a>
<a href="#products">products</a>
<a href="#review">review</a>
<a href="#contact">contact</a>
<a href="#blogs">blogs</a>
</nav>
<div class="icons">
<div class="fas fa-search" id="search-btn"></div>
<div class="fas fa-shopping-cart" id="cart-btn"></div>
<div class="fas fa-bars" id="menu-btn"></div>
</div>
<div class="search-form">
<input type="search" id="search-box" placeholder="search here..." />
<label for="search-box" class="fas fa-search"></label>
</div>
<div class="cart-items-container">
<div class="cart-items">
<span class="fas fa-times"></span>
<img src="images/cart-item-1.png" alt="" />
<div class="content">
<h3>cart item 01</h3>
<div class="price">$15.99/-</div>
</div>
</div>
<div class="cart-items">
<span class="fas fa-times"></span>
<img src="images/cart-item-2.png" alt="" />
<div class="content">
<h3>cart item 02</h3>
<div class="price">$15.99/-</div>
</div>
</div>
<div class="cart-items">
<span class="fas fa-times"></span>
<img src="images/cart-item-3.png" alt="" />
<div class="content">
<h3>cart item 03</h3>
<div class="price">$15.99/-</div>
</div>
</div>
<div class="cart-items">
<span class="fas fa-times"></span>
<img src="images/cart-item-4.png" alt="" />
<div class="content">
<h3>cart item 04</h3>
<div class="price">$15.99/-</div>
</div>
</div>
<a href="#" class="btn">checkout now</a>
</div>
</header>
<!--header section ends-->
<!--home section starts-->
<section class="home" id="home">
<div class="content">
<h3>fresh coffee in the morning</h3>
<p>
Our coffee is an invitation to embrace the dawn with a steaming cup of aromatic delight. As the sun rises, so does the rich essence of freshly brewed coffee, awakening the senses and creating a moment of blissful indulgence.
</p>
<a href="#" class="btn">get yours now</a>
</div>
</section>
<!--home section ends-->
<!-- about section starts -->
<section class="about" id="about">
<h1 class="heading"><span>about</span> us</h1>
<div class="row">
<div class="img">
<img src="images/about-img.jpeg" alt="" />
</div>
<div class="content">
<h3>what makes our coffee special ?</h3>
<p>
Our coffee stands out for its exceptional quality and meticulous production process. Carefully selecting the finest beans, we are committed to delivering an unparalleled caffeine experience. Each cup we serve is the result of careful attention at every step, from cultivating the beans to the final preparation.
</p>
<p>
Why choose our coffee over others? We take pride in sourcing beans from the finest plantations, ensuring a rich flavor and distinct aromas. Our dedication to excellence is evident in every sip, creating a sensory experience that satisfies even the most discerning palates.
</p>
<a href="#" class="btn">learn more</a>
</div>
</div>
</section>
<!-- about section ends -->
<!-- menu section starts -->
<section class="menu" id="menu">
<h1 class="heading">our <span>menu</span></h1>
<div class="box-container">
<div class="box">
<img src="images/menu-1.png" alt="" />
<h1>tasty and healty</h1>
<div class="price">$15.99 <span>$20.99</span></div>
<a href="#" class="btn">add to cart</a>
</div>
<div class="box">
<img src="images/menu-2.png" alt="" />
<h1>tasty and healty</h1>
<div class="price">$15.99 <span>$20.99</span></div>
<a href="#" class="btn">add to cart</a>
</div>
<div class="box">
<img src="images/menu-3.png" alt="" />
<h1>tasty and healty</h1>
<div class="price">$15.99 <span>$20.99</span></div>
<a href="#" class="btn">add to cart</a>
</div>
<div class="box">
<img src="images/menu-4.png" alt="" />
<h1>tasty and healty</h1>
<div class="price">$15.99 <span>$20.99</span></div>
<a href="#" class="btn">add to cart</a>
</div>
<div class="box">
<img src="images/menu-5.png" alt="" />
<h1>tasty and healty</h1>
<div class="price">$15.99 <span>$20.99</span></div>
<a href="#" class="btn">add to cart</a>
</div>
<div class="box">
<img src="images/menu-6.png" alt="" />
<h1>tasty and healty</h1>
<div class="price">$15.99 <span>$20.99</span></div>
<a href="#" class="btn">add to cart</a>
</div>
</div>
</section>
<!-- menu section ends -->
<section class="products" id="products">
<h1 class="heading">our <span>products</span></h1>
<div class="box-container">
<div class="box">
<div class="icons">
<a href="#" class="fas fa-shopping-cart"></a>
<a href="#" class="fas fa-heart"></a>
<a href="#" class="fas fa-eye"></a>
</div>
<div class="image">
<img src="images/product-1.png" alt="" />
</div>
<div class="content">
<h3>fresh coffee</h3>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<div class="price">$15.99 <span>$20.99</span></div>
</div>
</div>
<div class="box">
<div class="icons">
<a href="#" class="fas fa-shopping-cart"></a>
<a href="#" class="fas fa-heart"></a>
<a href="#" class="fas fa-eye"></a>
</div>
<div class="image">
<img src="images/product-2.png" alt="" />
</div>
<div class="content">
<h3>fresh coffee</h3>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<div class="price">$15.99 <span>$20.99</span></div>
</div>
</div>
<div class="box">
<div class="icons">
<a href="#" class="fas fa-shopping-cart"></a>
<a href="#" class="fas fa-heart"></a>
<a href="#" class="fas fa-eye"></a>
</div>
<div class="image">
<img src="images/product-3.png" alt="" />
</div>
<div class="content">
<h3>fresh coffee</h3>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<div class="price">$15.99 <span>$20.99</span></div>
</div>
</div>
</div>
</section>
<!-- review section stars -->
<section class="review" id="review">
<h1 class="heading">customer's <span>review</span></h1>
<div class="box-container">
<div class="box">
<img src="images/quote-img.png" alt="" class="quote" />
<p>
I recently had the pleasure of experiencing their services, and I must say it was nothing short of exceptional. From the moment I walked in, the ambiance was inviting, and the staff were incredibly friendly. The attention to detail in every aspect, from the decor to the menu options, made my visit truly enjoyable. The coffee was a delight, showcasing a perfect blend of flavors that left me wanting more. I highly recommend this place for anyone looking for a top-notch coffee experience.
</p>
<img src="images/pic-1.png" class="user" alt="" />
<h3>john doo</h3>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
<div class="box">
<img src="images/quote-img.png" alt="" class="quote" />
<p>
What a delightful find! This place exceeded all my expectations. The coffee was not just a beverage; it was a work of art. The flavors were rich and distinct, and the baristas clearly knew their craft. The atmosphere was cozy and inviting, making it the perfect spot to unwind or catch up with friends. The attention to quality and customer satisfaction sets this establishment apart. I'm already looking forward to my next visit.
</p>
<img src="images/pic-2.png" class="user" alt="" />
<h3>jane doo</h3>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
<div class="box">
<img src="images/quote-img.png" alt="" class="quote" />
<p>
I can't express how impressed I am with the quality of both the coffee and the service. The beans they use are clearly of the highest quality, resulting in a cup of coffee that is unparalleled. The staff is not only knowledgeable but also passionate about their craft, and it reflects in every cup they serve. The cozy atmosphere and attention to cleanliness further enhance the overall experience. If you're a coffee enthusiast, this place is a must-visit. You won't be disappointed!
</p>
<img src="images/pic-3.png" class="user" alt="" />
<h3>Esteban doo</h3>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
</section>
<!-- review section ends -->
<!-- contact section stars -->
<section class="contact" id="contact">
<h1 class="heading"><span> contact </span> us</h1>
<div class="row">
<iframe
class="map"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2517.191180559672!2d2.4914005151732486!3d50.88317186397213!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47dcf1b646620879%3A0xb118151a78349916!2sPaul%20Dequidt%20Torr%C3%A9facteur%20SA!5e0!3m2!1sfr!2sfr!4v1681063864977!5m2!1sfr!2sfr"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade"
></iframe>
<form action="https://formspree.io/f/xoqzrgdz" method="POST">
<h3>Get in touch</h3>
<div class="inputBox">
<span><i class="fas fa-user"></i></span>
<input type="text" name="name" placeholder="Name" required />
</div>
<div class="inputBox">
<span><i class="fas fa-envelope"></i></span>
<input type="email" name="email" placeholder="Email" required />
</div>
<div class="inputBox">
<span><i class="fas fa-comment"></i></span>
<input type="text" name="message" placeholder="Message" required />
</div>
<input type="submit" value="Contact now" class="btn" />
</form>
</div>
</section>
<!-- contact section ends -->
<!-- blogs section stars -->
<section class="blogs" id="blogs">
<h1 class="heading">our <span>blogs</span></h1>
<div class="box-container">
<div class="box">
<div class="image">
<img src="images/blog-1.jpeg" alt="" />
</div>
<div class="content">
<a href="#" class="title">tasty and refreshing coffee</a>
<span>By Abdelghani.H / 21st may, 2021</span>
<p>
Indulge in the delightful and invigorating experience of our expertly crafted coffee. Immerse yourself in the rich flavors and aromatic bliss that our coffee provides. Every sip is a journey into a world of taste and refreshment that will leave you craving for more.
</p>
<a href="#" class="btn">read more</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/blog-2.jpeg" alt="" />
</div>
<div class="content">
<a href="#" class="title">A Symphony of Flavors: Coffee Bliss</a>
<span>By Abdelghani.H / 21st may, 2021</span>
<p>
Embark on a sensory journey with our expertly crafted coffee blends that create a symphony of flavors. From the robust notes to the subtle undertones, each cup is a harmonious blend that captivates the palate. Elevate your coffee experience to new heights and savor the blissful moments that unfold with every sip.
</p>
<a href="#" class="btn">read more</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/blog-3.jpeg" alt="" />
</div>
<div class="content">
<a href="#" class="title">Cozy Atmosphere, Exceptional Coffee</a>
<span>By Abdelghani.H / 21st may, 2021</span>
<p>
Step into our cozy haven and experience the perfect blend of comfort and exceptional coffee. Our warm ambiance provides the ideal setting to enjoy a cup of perfection. Whether you're catching up with friends or seeking a peaceful retreat, our establishment offers more than just coffee; it provides an escape into a world of relaxation and delightful flavors.
</p>
<a href="#" class="btn">read more</a>
</div>
</div>
</div>
</section>
<!-- blogs section ends -->
<!-- footer section stars -->
<section class="footer">
<div class="share">
<a
href="https://twitter.com/HamazAbdelghani"
class="fab fa-twitter"
></a>
<a
href="https://www.linkedin.com/in/abdelghani-hamaz-2a288b226/"
class="fab fa-linkedin"
></a>
<a href="https://github.com/eljefe213" class="fab fa-github"></a>
</div>
<div class="links">
<a href="#">home</a>
<a href="#">about</a>
<a href="#">menu</a>
<a href="#">products</a>
<a href="#">review</a>
<a href="#">contact</a>
<a href="#">blogs</a>
</div>
<div class="credit">
created by <span>Abdelghani Hamaz</span> | All rights reserved
</div>
</section>
<!-- footer section ends -->
<!--custom js file link-->
<script src="js/script.js"></script>
</body>
</html>