-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
497 lines (487 loc) · 16.1 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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Coffee-Shop 13_HS</title>
<!-- Css Link -->
<link rel="stylesheet" href="style.css" />
<!-- Fav Icon -->
<link rel="shortcut icon" href="./images/logo.jpg" type="image/x-icon" />
<!-- Font Awesome Link -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css"
/>
</head>
<body>
<!-- Header -->
<!-- -->
<header>
<!-- Logo -->
<a href="#" class="logo">
<img src="./images/logo.jpg" alt="" />
</a>
<!-- Navigation -->
<nav>
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#menu">Menu</a>
<a href="#products">Products</a>
<a href="#reviews">Reviews</a>
<a href="#contact">Contact</a>
<a href="#blogs">Blogs</a>
</nav>
<!-- Icons -->
<div class="icons">
<i class="fa-solid fa-magnifying-glass"></i>
<i class="fa-solid fa-cart-shopping"></i>
<i class="fa-solid fa-bars" id="menu-btn"></i>
</div>
</header>
<!-- * Home -->
<section class="home" id="home">
<div class="content">
<h3>Fresh Coffee in the Morning</h3>
<p>
Start your day with a cup of freshly brewed coffee, made from the
finest beans. Whether you prefer it strong or mild, our coffee will
give you the perfect kick to begin your morning with energy and
flavor.
</p>
<button class="btn">Get Yours Now</button>
</div>
</section>
<!-- * About-Us -->
<section class="about" id="about">
<!-- heading -->
<h1 class="heading"><span>about</span> us</h1>
<!-- Row -->
<div class="row">
<div class="image">
<img src="./images/about-us.jpg" alt="about-image" />
</div>
<div class="content">
<h3>what makes our Coffee special</h3>
<p>
Our coffee is a blend of passion, quality, and sustainability. Each
cup is crafted from carefully selected beans, roasted to perfection
to bring out their unique flavors. From farm to cup, we focus on
ethical sourcing, ensuring a rich, smooth taste that you can feel
good about with every sip.
</p>
<button class="btn">Learn More</button>
</div>
</div>
</section>
<!-- Menu -->
<section class="menu" id="menu">
<!-- title -->
<h1 class="heading">Our <span>Menu</span></h1>
<!-- box-container -->
<div class="box-container">
<!-- box -->
<div class="box">
<!-- image -->
<img src="./images/menu-1.jpg" alt="" />
<!-- title -->
<h3>tast and healty</h3>
<!-- price -->
<div class="price">$14.99 <span>$19.99</span></div>
<!-- button -->
<button class="btn">add to cart</button>
</div>
<!-- box -->
<div class="box">
<!-- image -->
<img src="./images/menu-2.jpg" alt="" />
<!-- title -->
<h3>tast and healty</h3>
<!-- price -->
<div class="price">$16.99 <span>$19.99</span></div>
<!-- button -->
<button class="btn">add to cart</button>
</div>
<!-- box -->
<div class="box">
<!-- image -->
<img src="./images/menu-3.jpg" alt="" />
<!-- title -->
<h3>tast and healty</h3>
<!-- price -->
<div class="price">$13.99 <span>$19.99</span></div>
<!-- button -->
<button class="btn">add to cart</button>
</div>
<!-- box -->
<div class="box">
<!-- image -->
<img src="./images/menu-4.jpg" alt="" />
<!-- title -->
<h3>tast and healty</h3>
<!-- price -->
<div class="price">$17.99 <span>$19.99</span></div>
<!-- button -->
<button class="btn">add to cart</button>
</div>
<!-- box -->
<div class="box">
<!-- image -->
<img src="./images/menu-5.jpg" alt="" />
<!-- title -->
<h3>tast and healty</h3>
<!-- price -->
<div class="price">$18.99 <span>$19.99</span></div>
<!-- button -->
<button class="btn">add to cart</button>
</div>
<!-- box -->
<div class="box">
<!-- image -->
<img src="./images/menu-6.jpg" alt="" />
<!-- title -->
<h3>tast and healty</h3>
<!-- price -->
<div class="price">$15.99 <span>$19.99</span></div>
<!-- button -->
<button class="btn">add to cart</button>
</div>
<!-- box -->
<div class="box">
<!-- image -->
<img src="./images/menu-7.jpg" alt="" />
<!-- title -->
<h3>tast and healty</h3>
<!-- price -->
<div class="price">$12.99 <span>$19.99</span></div>
<!-- button -->
<button class="btn">add to cart</button>
</div>
<!-- box -->
<div class="box">
<!-- image -->
<img src="./images/menu-8.jpg" alt="" />
<!-- title -->
<h3>tast and healty</h3>
<!-- price -->
<div class="price">$15.99 <span>$19.99</span></div>
<!-- button -->
<button class="btn">add to cart</button>
</div>
<!-- box -->
<div class="box">
<!-- image -->
<img src="./images/menu-9.jpg" alt="" />
<!-- title -->
<h3>tast and healty</h3>
<!-- price -->
<div class="price">$17.99 <span>$19.99</span></div>
<!-- button -->
<button class="btn">add to cart</button>
</div>
<!-- box -->
<div class="box">
<!-- image -->
<img src="./images/menu-10.jpg" alt="" />
<!-- title -->
<h3>tast and healty</h3>
<!-- price -->
<div class="price">$18.99 <span>$19.99</span></div>
<!-- button -->
<button class="btn">add to cart</button>
</div>
</div>
</section>
<!-- * Products -->
<section class="products" id="products">
<!-- title -->
<h1 class="heading">Our <span>products</span></h1>
<!-- Box-Container -->
<div class="box-container">
<!-- Product Box -->
<div class="product-box">
<!-- image -->
<div class="image">
<img src="./images/product-1.jpg" alt="" />
</div>
<!-- content -->
<div class="content">
<h3>fresh coffee</h3>
<!-- stars -->
<div class="stars">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
</div>
<!-- price -->
<div class="price">$12.99 <span>$20.99</span></div>
</div>
</div>
<!-- Product Box -->
<div class="product-box">
<!-- image -->
<div class="image">
<img src="./images/product-2.jpg" alt="" />
</div>
<!-- content -->
<div class="content">
<h3>fresh coffee</h3>
<!-- stars -->
<div class="stars">
<i class="fa-brands fa-star"></i>
<i class="fa-brands fa-star"></i>
<i class="fa-brands fa-star"></i>
<i class="fa-brands fa-star"></i>
<i class="fa-brands fa-star"></i>
</div>
<!-- price -->
<div class="price">$12.99 <span>$20.99</span></div>
</div>
</div>
<!-- Product Box -->
<div class="product-box">
<!-- image -->
<div class="image">
<img src="./images/product-3.jpg" alt="" />
</div>
<!-- content -->
<div class="content">
<h3>fresh coffee</h3>
<!-- stars -->
<div class="stars">
<i class="fa-brands fa-star"></i>
<i class="fa-brands fa-star"></i>
<i class="fa-brands fa-star"></i>
<i class="fa-brands fa-star"></i>
<i class="fa-brands fa-star"></i>
</div>
<!-- price -->
<div class="price">$12.99 <span>$20.99</span></div>
</div>
</div>
</div>
</section>
<!-- * Reviews -->
<section class="reviews" id="reviews">
<!-- title -->
<h1 class="heading">customer's <span>revıews</span></h1>
<!-- Box-container -->
<div class="box-container">
<!-- box -->
<div class="box">
<!-- comment -->
<p>
The coffee here is truly exceptional! The rich aroma and bold flavor
give me the perfect start to my day. I highly recommend their
espresso blend.
</p>
<!-- image -->
<img src="./images/user-1.jpg" alt="" />
<!-- name -->
<h3>Sedat A.</h3>
<!-- stars -->
<div class="stars">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
</div>
</div>
<!-- box -->
<div class="box">
<!-- comment -->
<p>
The coffee here is truly exceptional! The rich aroma and bold flavor
give me the perfect start to my day. I highly recommend their
espresso blend.
</p>
<!-- image -->
<img src="./images/user-2.jpg" alt="" />
<!-- name -->
<h3>Özgür</h3>
<!-- stars -->
<div class="stars">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
</div>
</div>
<!-- box -->
<div class="box">
<!-- comment -->
<p>
The coffee here is truly exceptional! The rich aroma and bold flavor
give me the perfect start to my day. I highly recommend their
espresso blend.
</p>
<!-- image -->
<img src="./images/user-3.jpg" alt="" />
<!-- name -->
<h3>Enes</h3>
<!-- stars -->
<div class="stars">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
</div>
</div>
</div>
</section>
<!-- * Contact Us -->
<section class="contact" id="contact">
<!-- title -->
<h1 class="heading"><span>contact</span> us</h1>
<!-- row -->
<div class="row">
<!-- Harita -->
<iframe
class="map"
src="https://www.google.com/maps/embed?pb=!1m14!1m12!1m3!1d97911.65278383937!2d32.75467770567461!3d39.92485333711659!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!5e0!3m2!1str!2str!4v1736017707542!5m2!1str!2str"
width="600"
height="450"
style="border: 0"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade"
></iframe>
<!-- form -->
<form>
<!-- title -->
<h3>get in touch</h3>
<!-- input-box -->
<div class="input-box">
<span><i class="fa-regular fa-user"></i></span>
<input type="text" placeholder="name" />
</div>
<!-- input-box -->
<div class="input-box">
<span><i class="fa-solid fa-envelope"></i></span>
<input type="email" placeholder="email" />
</div>
<!-- input-box -->
<div class="input-box">
<span><i class="fa-solid fa-phone"></i></span>
<input type="number" placeholder="number" />
</div>
<!-- button -->
<div class="btn-container">
<button class="btn">Send</button>
</div>
</form>
</div>
</section>
<!-- * Blogs -->
<section class="blogs" id="blogs">
<!-- title -->
<h1 class="heading">our <span>blogs</span></h1>
<!-- Container -->
<div class="box-container">
<!-- box -->
<div class="box">
<!-- image -->
<div class="image">
<img src="./images/blog-1.jpg" alt="" />
</div>
<!-- content -->
<div class="content">
<!-- blog name -->
<a href="#">tasty and refreshing coffee</a>
<!-- date -->
<span>by admin /04.01.2025</span>
<!-- description -->
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo
excepturi porro quaerat eius minima quas molestias possimus, earum
neque at. Debitis molestiae mollitia in non explicabo quibusdam
porro, reiciendis quidem?
</p>
<!-- button -->
<button class="btn">Read More</button>
</div>
</div>
<!-- box -->
<div class="box">
<!-- image -->
<div class="image">
<img src="./images/blog-2.jpg" alt="" />
</div>
<!-- content -->
<div class="content">
<!-- blog name -->
<a href="#">tasty and refreshing coffee</a>
<!-- date -->
<span>by admin /04.01.2025</span>
<!-- description -->
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo
excepturi porro quaerat eius minima quas molestias possimus, earum
neque at. Debitis molestiae mollitia in non explicabo quibusdam
porro, reiciendis quidem?
</p>
<!-- button -->
<button class="btn">Read More</button>
</div>
</div>
<!-- box -->
<div class="box">
<!-- image -->
<div class="image">
<img src="./images/blog-3.jpg" alt="" />
</div>
<!-- content -->
<div class="content">
<!-- blog name -->
<a href="#">tasty and refreshing coffee</a>
<!-- date -->
<span>by admin /04.01.2025</span>
<!-- description -->
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo
excepturi porro quaerat eius minima quas molestias possimus, earum
neque at. Debitis molestiae mollitia in non explicabo quibusdam
porro, reiciendis quidem?
</p>
<!-- button -->
<button class="btn">Read More</button>
</div>
</div>
</div>
</section>
<!-- * Footer -->
<footer>
<section>
<!-- Icons -->
<div class="icons">
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-x-twitter"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-linkedin"></i>
<i class="fa-brands fa-pinterest"></i>
</div>
<!-- Links -->
<div class="links">
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#menu">Menu</a>
<a href="#products">Products</a>
<a href="#reviews">Reviews</a>
<a href="#contact">Contact</a>
<a href="#blogs">Blogs</a>
</div>
<!-- Copyright -->
<p class="copyright">
created by <span>Udemig</span> | all rights reserved
</p>
</section>
</footer>
<!-- * Js Bağlantı -->
<script src="./main.js"></script>
</body>
</html>