-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
612 lines (593 loc) · 31.9 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
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
<!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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lobster&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Rubik&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=MonteCarlo&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Style+Script&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./bootstrap-5.0.2-dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./fontawesome-free-5.15.4-web/css/all.min.css">
<link rel="stylesheet" href="./custom/style.css">
<title>Food Shop</title>
</head>
<body>
<nav class="navbar navbar-expand-md navbar-light bg-warning shadow-sm sticky-top">
<div class="container">
<a class="navbar-brand pe-md-2" href="#home">
Organic
</a>
<button id="navbar-toggler" class="navbar-toggler d-md-none" type="button" data-bs-toggle="collapse"
data-bs-target="#collapsibleNavId" aria-controls="collapsibleNavId" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavId">
<ul class="navbar-nav m-auto">
<li class="nav-item active">
<a class="nav-link" href="#home">Home <span class="visually-hidden">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#trending">Trending</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#shop">Store</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
<form class="d-flex ms-0 ms-md-5 my-3 my-md-0">
<input class="search ps-3 py-1" type="text" placeholder="Search">
<button class="btn0 text-center py-1 px-3" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<section id="home" class="main">
<div class="container">
<div class="row">
<div class="col-lg-7 py-5 d-block">
<h1 class="text-capitalize fs-1 fw-bold text-center pt-5 pb-3">
Nature has always<br> care for us !
</h1>
<div class="text-center">
<button class="btn1 fw-bold text-capitalize ">
more tips
</button>
</div>
</div>
</div>
</div>
</section>
<section class="new py-5 bg-gradient">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 py-5">
<div class="row">
<div class="col-md-4">
<div class="text-center">
<img class="img-fluid" src="./img/banana-2449019__340.jpg" alt="grapes" srcset="">
</div>
<h6 class="text-uppercase text-center py-2">natural</h6>
</div>
<div class="col-md-4">
<div class="text-center">
<img class="img-fluid" src="./img/food-1239241__340.jpg" alt="mango" srcset="">
</div>
<h6 class="text-uppercase text-center py-2">natural</h6>
</div>
<div class="col-md-4">
<div class="text-center">
<img class="img-fluid" src="./img/pineapple-5108775__340.jpg" alt="banana"
srcset="">
</div>
<h6 class="text-uppercase text-center py-2">natural</h6>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="trending" class="product py-5 bg-gradient">
<div class="container">
<div class="pb-5">
<h1 class="text-capitalize fw-bold text-center">
what's Trending?
</h1>
<p class="text-capitalize text-center fw-bold">
<small style="color: rgb(248, 26, 92);">
Be healthy with organic food !
</small>
</p>
</div>
<div class="row">
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/energy.png" alt="energy food" srcset="">
<h6 class="text-capitalize text-center">
energy food
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 39.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/beans.png" alt="green beans" srcset="">
<h6 class="text-capitalize text-center">
green beans
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 44.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/refill.png" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
refil pack
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/120_copy-removebg-preview.png" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
juce caption mockup
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
</div>
<hr>
<div class="row justify-content-center ">
<div class="text-center">
<button class="btn1 py-2 py-sm-3 px-5 fw-bold">Click For More</button>
</div>
</div>
</div>
</section>
<section id="about" class="about bg-gradient py-5">
<div class="container">
<div class="row pb-5">
<h1 class="text-center fw-bold text-capitalize">
Welcome to our organic food society
</h1>
<p class="text-center fw-bold" style="color: rgb(248, 26, 92);">
<small>Be healthy with organic food !</small>
</p>
</div>
<div class="row">
<div class="col-12 col-sm-6 col-md-4 mt-5 mt-md-0 px-2">
<img class="img-fluid" src="./img/woman.jpg" alt="" srcset="">
<h6 class="text-capitalize pt-3">
best quality product
</h6>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Eveniet ad natus beatae ab soluta
aspernatur iure doloremque, ex praesentium quaerat sit tempore minima saepe ut quo voluptas
incidunt rerum aut.
</p>
</div>
<div class="col-12 col-sm-6 col-md-4 mt-5 mt-md-0 px-2">
<img class="img-fluid" src="./img/gf.jpg" alt="" srcset="">
<h6 class="text-capitalize pt-3">
organic food
</h6>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Eveniet ad natus beatae ab soluta
aspernatur iure
doloremque, ex praesentium quaerat sit tempore minima saepe ut quo voluptas incidunt rerum
aut.
</p>
</div>
<div class="col-12 col-sm-6 col-md-4 mt-5 mt-md-0 px-2">
<img class="img-fluid" src="./img/oranges-1995056__340.jpg" alt="" srcset="">
<h6 class="text-capitalize pt-3">
best quality product
</h6>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Eveniet ad natus beatae ab soluta
aspernatur iure
doloremque, ex praesentium quaerat sit tempore minima saepe ut quo voluptas incidunt rerum
aut.
</p>
</div>
</div>
<div class="text-center pt-3">
<button class="btn1 fw-bold">Submit</button>
</div>
</div>
</section>
<section id="shop" class="shop py-5 bg-gradient">
<div class="container">
<div class="pb-5">
<h1 class="text-capitalize fw-bold text-center">
explore our store
</h1>
<p class="text-capitalize text-center fw-bold">
<small style="color: rgb(248, 26, 92);">
pick your product from our store
</small>
</p>
</div>
<div class="row">
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/energy.png" alt="energy food" srcset="">
<h6 class="text-capitalize text-center">
energy food
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 39.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/beans.png" alt="green beans" srcset="">
<h6 class="text-capitalize text-center">
green beans
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 44.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/refill.png" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
refil pack
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/120_copy-removebg-preview.png" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
juce caption mockup
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/pixabay/apples-3313225__340.jpg" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
apple
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/pixabay/berries-2277__340.jpg" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
berries
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/pixabay/cherries-3433775__340.jpg" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
cherries
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/pixabay/coffee-1239226__340.jpg" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
coffee
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/pixabay/cupcakes-690040__340.jpg" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
cupcakes
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/pixabay/currants-3538617__340.jpg" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
currants
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/pixabay/eat-2834549__340.jpg" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
eat
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/pixabay/grapes-3550742__340.jpg" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
grapes
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/pixabay/grapes-3696472__340.jpg" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
grapes
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/pixabay/meat-1155132__340.jpg" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
meat
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/pixabay/onions-1238332__340.jpg" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
onions
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/pixabay/pancake-1984716__340.jpg" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
pancake
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/pixabay/pancakes-2291908__340.jpg" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
pancake
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/pixabay/raspberries-1426859__340.jpg" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
raspberries
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/pixabay/salad-2756467__340.jpg" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
salad
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/pixabay/salmon-518032__340.jpg" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
salmon
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/pixabay/strawberry-1238295__340.jpg" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
strawberry
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/pixabay/vegetables-1085063__340.jpg" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
vegetables
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/pixabay/vegetables-1584999__340.jpg" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
vegetables
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
<div class="col-md-3 col-sm-4 col-6 food">
<img class="img-fluid" src="./img/pixabay/vegetables-752153__340.jpg" alt="energy" srcset="">
<h6 class="text-capitalize text-center">
vegetables
</h6>
<p class="fw-bold text-center" style="color: rgb(248, 26, 92);">
<i class="fas fa-dollar-sign "></i> 34.99
</p>
</div>
</div>
<hr>
</div>
</section>
<section id="apple" class="apple py-5">
<div class="container">
<div class="col-md-7 py-md-5">
<h1 class="text-capitalize apple-title fw-bold pt-md-5">
unlock your potential with<br> good nutrion
</h1>
<p class="text-capitalize fw-bold pt-3">
always get good food
</p>
<button class="text-capitalize fw-bold btn2 mt-2 mt-md-5">
more from us
</button>
</div>
</div>
</section>
<section id="contact" class="contact py-5">
<div class="container">
<div class="text-center">
<h1 class="text-capitalize fw-bold">
contact us
</h1>
<small class="fw-bold" style="color: rgb(248, 26, 92);">Always be in touch with us</small>
</div>
<div class="row">
<div class="col-sm-5 py-5 pe-sm-3">
<div class="mt-3">
<h6 class="text-uppercase">
<i class="fas fa-map-marker-alt "></i> Location
</h6>
<small class="text-capitalize text-muted">
rue 8.568 yaounde CAMEROON
</small>
</div>
<div class="mt-3">
<h6 class="text-uppercase">
<i class="fas fa-phone-alt"></i> Phone
</h6>
<a href="tel:(+237)683359297" class="text-capitalize text-muted text-decoration-none">
(+237) 6 83 35 92 97
</a>
</div>
<div class="mt-3">
<h6 class="text-uppercase">
<i class="fas fa-envelope"></i> email:
</h6>
<a href="mailto:[email protected]" class="text-muted text-decoration-none">
</a>
</div>
</div>
<div class="col-sm-7 py-5">
<form action="" method="post">
<div class="row mb-3">
<div class="col-sm-6 mt-3">
<input type="text" name="" id="" class="form-control" placeholder="Name"
aria-describedby="helpId">
</div>
<div class="col-sm-6 mt-3">
<input type="email" name="" id="" class="form-control" placeholder="Email"
aria-describedby="helpId">
</div>
</div>
<div class="row">
<div class="mb-3">
<textarea class="form-control" name="" id="" placeholder="Enter Message"
rows="6"></textarea>
</div>
</div>
<div class="row justify-content-center">
<div class="col-3">
<button class="fw-bold btn2" type="submit">Submit</button>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<section id="news" class="news bg-dark py-5">
<div class="container">
<div class="row justify-content-center py-5">
<div class="col-sm-8">
<h1 class="text-center fw-bold fs-1 text-white text-capitalize py-3">
subscribe to our news letter
</h1>
<form class="" action="">
<div class="input-group">
<input class="form-control bg-dark text-white" type="text"
placeholder="Enter Your Email...">
<button type="submit" class="btn ">Submit</button>
</div>
</form>
</div>
</div>
<div class="row justify-content-evenly py-5">
<div class="col-sm-4 col-md-3 py-3">
<h5 class="text-uppercase pb-3">
customer care
</h5>
<a href="#" class="d-block text-decoration-none text-white">Regular</a>
<a href="#" class="d-block text-decoration-none text-white">On Time</a>
<a href="#" class="d-block text-decoration-none text-white">Always Care</a>
</div>
<div class="col-sm-4 col-md-3 py-3">
<h5 class="text-uppercase pb-3">
faq<span class="text-lowercase">'s</span>
</h5>
<a href="#" class="d-block text-decoration-none text-white">No E-charges</a>
<a href="#" class="d-block text-decoration-none text-white">Shopping & Delevery</a>
<a href="#" class="d-block text-decoration-none text-white">Always Care</a>
</div>
<div class="col-sm-4 col-md-3 py-3">
<h5 class="text-uppercase pb-3">
our command
</h5>
<a href="#" class="d-block text-decoration-none text-white">About</a>
<a href="#" class="d-block text-decoration-none text-white">New Food</a>
<a href="#" class="d-block text-decoration-none text-white">Product</a>
</div>
<div class="col-sm-4 col-md-3 py-3">
<h5 class="text-uppercase pb-3">
social media
</h5>
<div class="row justify-content-around py-3">
<a href="#" class="col text-decoration-none text-white"><i class="fab fa-facebook-f fa-2x"></i></a>
<a href="#" class="col text-decoration-none text-white"><i class="fab fa-twitter fa-2x"></i></a>
<a href="#" class="col text-decoration-none text-white"><i class="fab fa-instagram fa-2x"></i></a>
<a href="#" class="col text-decoration-none text-white"><i class="fab fa-google-plus fa-2x"></i></a>
</div>
</div>
</div>
<hr>
<div class="text-center">
<small>
Copyrigths <i class="fas fa-copyright"></i>
2021 |
Made with <i class="text-danger fas fa-heart "></i> by
<a href="mailto:[email protected]" class="text-decoration-none fw-bold">Jonas Levis</a>
</small>
</div>
</div>
</section>
<!-- <section class="map">
<div class="container">
<iframe class="col-12 col-sm-6"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d1933.7891656463644!2d11.473826988409337!3d3.8301429619432987!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x108bce290b9a490b%3A0x9a030d6de588859b!2sEntr%C3%A9e%20Sika!5e0!3m2!1sfr!2scm!4v1628919486622!5m2!1sfr!2scm"
style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
</section> -->
<script src="./bootstrap-5.0.2-dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>