-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
726 lines (701 loc) · 30.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
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
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
<!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="scss/main.css" />
<link rel="shortcut icon" href="assets/img/logo.png" type="image/x-icon" />
<title>My Clean</title>
</head>
<body>
<header id="header">
<div class="container">
<div class="header">
<div class="header__left">
<a href="index.html">
<img src="assets/img/logo.png" alt="Logo" />
</a>
</div>
<div class="header__right">
<img src="assets/img/menubar.png" alt="Menu Bar" />
</div>
</div>
</div>
</header>
<main>
<section id="head">
<div class="container">
<div class="head">
<div class="head__left">
<h1>
YOUR CAR
<br />
TELLS A LOT ABOUT YOU.
</h1>
<p>
So leave it to the professionals! MyClean - the trusted address
for dry cleaning
</p>
<div class="head__left--box">
<a href="about.html">
<span>More</span>
<div class="head-icon">
<i>
<svg
fill="currentColor"
viewBox="0 0 16 16"
height="1.3em"
width="1.3em"
>
<path
fillRule="evenodd"
d="M1 8a.5.5 0 01.5-.5h11.793l-3.147-3.146a.5.5 0 01.708-.708l4 4a.5.5 0 010 .708l-4 4a.5.5 0 01-.708-.708L13.293 8.5H1.5A.5.5 0 011 8z"
/>
</svg>
</i>
</div>
</a>
</div>
</div>
<div class="head__right">
<img src="assets/img/header-wash.png" alt="Wash photo" />
</div>
</div>
</div>
</section>
<section id="statistics">
<div class="container">
<div class="statistics__all">
<div class="statistics__all--box">
<h2>500+</h2>
<h5>Satisfied Customers</h5>
</div>
<div class="statistics__all--box">
<h2>20+</h2>
<h5>Services</h5>
</div>
<div class="statistics__all--box">
<h2>17+</h2>
<h5>Years of experience</h5>
</div>
</div>
</div>
</section>
<section id="homeAbout">
<div class="container">
<div class="homeAbout__all">
<div class="homeAbout__all--left">
<h2 class="h2-yellow h2-res">About</h2>
<div class="homeAbout__content">
<p>
As MyClean, we offer more than 10 services for all brands of
cars, and we also sell cars of various brands.
</p>
<p>
Our range of services includes steam chemical cleaning,
polishing, painting, engine washing and other services.
</p>
<p>
We keep our service offering tailored to our customers' needs
and focus on customer satisfaction.
</p>
<p>
The Myclean team is made up of highly trained professionals
and is equipped with comprehensive, standard-compliant
resources, so you'll always find professionals...
</p>
</div>
<div class="btn__icon">
<a href="about.html">
<span>More</span>
<i>
<svg
fill="currentColor"
viewBox="0 0 16 16"
height="1.3em"
width="1.3em"
>
<path
fillRule="evenodd"
d="M1 8a.5.5 0 01.5-.5h11.793l-3.147-3.146a.5.5 0 01.708-.708l4 4a.5.5 0 010 .708l-4 4a.5.5 0 01-.708-.708L13.293 8.5H1.5A.5.5 0 011 8z"
/>
</svg>
</i>
</a>
</div>
</div>
<div class="homeAbout__all--right">
<img src="assets/img/about-wash.png" alt="Wash photo" />
</div>
</div>
</div>
</section>
<section id="services">
<div class="container">
<div class="services">
<h2 class="h2-yellow h2-res">Services</h2>
<div class="services__boxes">
<div class="services__boxes--box">
<div class="services__box--img">
<img src="assets/img/service-1.webp" alt="Service photo" />
</div>
<div class="services__box--content">
<a href="services.html">
<h2 class="h2-white h2-res">Ceramics</h2>
</a>
<p>
Our professional car polishing service is designed to
breathe new life into your car's paint and res...
</p>
<a href="services.html" class="services__btn">
<span>Make a request</span>
<i>
<svg
fill="currentColor"
viewBox="0 0 16 16"
height="1.3em"
width="1.3em"
>
<path
fillRule="evenodd"
d="M1 8a.5.5 0 01.5-.5h11.793l-3.147-3.146a.5.5 0 01.708-.708l4 4a.5.5 0 010 .708l-4 4a.5.5 0 01-.708-.708L13.293 8.5H1.5A.5.5 0 011 8z"
/>
</svg>
</i>
</a>
</div>
</div>
<div class="services__boxes--box">
<div class="services__box--img">
<img src="assets/img/service-2.jpg" alt="Service photo" />
</div>
<div class="services__box--content">
<a href="services.html">
<h2 class="h2-white">Car Leather Repair</h2>
</a>
<p>
Even though leather is a durable material, overuse of it can
result in damage.Whether your car seats...
</p>
<a href="services.html" class="services__btn">
<span>Make a request</span>
<i>
<svg
fill="currentColor"
viewBox="0 0 16 16"
height="1.3em"
width="1.3em"
>
<path
fillRule="evenodd"
d="M1 8a.5.5 0 01.5-.5h11.793l-3.147-3.146a.5.5 0 01.708-.708l4 4a.5.5 0 010 .708l-4 4a.5.5 0 01-.708-.708L13.293 8.5H1.5A.5.5 0 011 8z"
/>
</svg>
</i>
</a>
</div>
</div>
<div class="services__boxes--box">
<div class="services__box--img">
<img src="assets/img/service-3.webp" alt="Service photo" />
</div>
<div class="services__box--content">
<a href="services.html">
<h2 class="h2-white">Car wash</h2>
</a>
<p>
Your car is a big part of your life, but keeping it clean is
a difficult part. MyClean is more than...
</p>
<a href="services.html" class="services__btn">
<span>Make a request</span>
<i>
<svg
fill="currentColor"
viewBox="0 0 16 16"
height="1.3em"
width="1.3em"
>
<path
fillRule="evenodd"
d="M1 8a.5.5 0 01.5-.5h11.793l-3.147-3.146a.5.5 0 01.708-.708l4 4a.5.5 0 010 .708l-4 4a.5.5 0 01-.708-.708L13.293 8.5H1.5A.5.5 0 011 8z"
/>
</svg>
</i>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="products">
<div class="container">
<div class="products">
<h2 class="h2-yellow h2-res">Products</h2>
<div class="products__boxes">
<div class="products__boxes--box">
<div class="products__box-img">
<img src="assets/img/product-1.jpg" alt="Product photo" />
</div>
<div class="products__box--content">
<a href="productsDetail.html">
<h3 class="h3-white">Koch Polishing Paste M302</h3>
</a>
<p>
Micro-polishing paste without silicone, oil-free This
solution is the latest generation machine m...
</p>
</div>
</div>
<div class="products__boxes--box">
<div class="products__box-img">
<img src="assets/img/product-2.jpg" alt="Product photo" />
</div>
<div class="products__box--content">
<a href="productsDetail.html">
<h3 class="h3-white">"Grass" Detergent</h3>
</a>
<p>
Highly concentrated vehicle wash. The pink foaming product
washes easily with water, easily remov...
</p>
</div>
</div>
<div class="products__boxes--box">
<div class="products__box-img">
<img src="assets/img/product-3.jpg" alt="Product photo" />
</div>
<div class="products__box--content">
<a href="productsDetail.html">
<h3 class="h3-white">"Grass" Auto Shampoo</h3>
</a>
<p>
Detergent for car surface cleaning. This shampoo creates
foam and removes dirt, oil, etc. from th...
</p>
</div>
</div>
<div class="products__boxes--box">
<div class="products__box-img">
<img src="assets/img/product-4.jpg" alt="Product photo" />
</div>
<div class="products__box--content">
<a href="productsDetail.html">
<h3 class="h3-white">Koch polirofka pastes H901</h3>
</a>
<p>
Solid polishing paste. Innovative machine polish for the
restoration of heavily worn paintwork, r...
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="cars">
<div class="container">
<div class="cars">
<h2 class="h2-yellow h2-res h2-cars">Cars</h2>
<div class="btn__icon btn__cars">
<a href="cars.html">
<span>More</span>
<i>
<svg
fill="currentColor"
viewBox="0 0 16 16"
height="1.3em"
width="1.3em"
>
<path
fillRule="evenodd"
d="M1 8a.5.5 0 01.5-.5h11.793l-3.147-3.146a.5.5 0 01.708-.708l4 4a.5.5 0 010 .708l-4 4a.5.5 0 01-.708-.708L13.293 8.5H1.5A.5.5 0 011 8z"
/>
</svg>
</i>
</a>
</div>
<div class="cars__boxes">
<div class="cars__boxes--box">
<div class="cars__boxes--box-img">
<img src="assets/img/cars.jfif" alt="Cars photo" />
</div>
<div class="cars__boxes--box-content">
<a href="carsDetail.html">
<h2 class="h2-white">Porche cayenne</h2>
</a>
<h3 class="h3-white">$77,500</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed
do eiusmod...
</p>
<div class="btn__icon">
<a href="carsDetail.html">
<span>More</span>
<i>
<svg
fill="currentColor"
viewBox="0 0 16 16"
height="1.3em"
width="1.3em"
>
<path
fillRule="evenodd"
d="M1 8a.5.5 0 01.5-.5h11.793l-3.147-3.146a.5.5 0 01.708-.708l4 4a.5.5 0 010 .708l-4 4a.5.5 0 01-.708-.708L13.293 8.5H1.5A.5.5 0 011 8z"
/>
</svg>
</i>
</a>
</div>
</div>
</div>
<div class="cars__boxes--box">
<div class="cars__boxes--box-img">
<img src="assets/img/cars.jfif" alt="Cars photo" />
</div>
<div class="cars__boxes--box-content">
<a href="carsDetail.html">
<h2 class="h2-white">Porche cayenne</h2>
</a>
<h3 class="h3-white">$77,500</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed
do eiusmod...
</p>
<div class="btn__icon">
<a href="carsDetail.html">
<span>More</span>
<i>
<svg
fill="currentColor"
viewBox="0 0 16 16"
height="1.3em"
width="1.3em"
>
<path
fillRule="evenodd"
d="M1 8a.5.5 0 01.5-.5h11.793l-3.147-3.146a.5.5 0 01.708-.708l4 4a.5.5 0 010 .708l-4 4a.5.5 0 01-.708-.708L13.293 8.5H1.5A.5.5 0 011 8z"
/>
</svg>
</i>
</a>
</div>
</div>
</div>
<div class="cars__boxes--box">
<div class="cars__boxes--box-img">
<img src="assets/img/cars.jfif" alt="Cars photo" />
</div>
<div class="cars__boxes--box-content">
<a href="carsDetail.html">
<h2 class="h2-white">Porche cayenne</h2>
</a>
<h3 class="h3-white">$77,500</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed
do eiusmod...
</p>
<div class="btn__icon">
<a href="carsDetail.html">
<span>More</span>
<i>
<svg
fill="currentColor"
viewBox="0 0 16 16"
height="1.3em"
width="1.3em"
>
<path
fillRule="evenodd"
d="M1 8a.5.5 0 01.5-.5h11.793l-3.147-3.146a.5.5 0 01.708-.708l4 4a.5.5 0 010 .708l-4 4a.5.5 0 01-.708-.708L13.293 8.5H1.5A.5.5 0 011 8z"
/>
</svg>
</i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="blog">
<div class="container">
<div class="blog">
<h2 class="h2-black h2-res">Blog</h2>
<div class="blog__box">
<div class="blog__box--img">
<img src="assets/img/blog-1.webp" alt="Blog Photo" />
</div>
<div class="blog__box--content">
<h3>What is headlight restoration?</h3>
<p>
We've probably all seen cars with yellowish and discolored
headlights and fog covering their lenses. This yellowish haze
is caused by oxidation. Oxida...
</p>
<div class="btn__icon">
<a href="blogDetail.html">
<span>More</span>
<i>
<svg
fill="currentColor"
viewBox="0 0 16 16"
height="1.3em"
width="1.3em"
>
<path
fillRule="evenodd"
d="M1 8a.5.5 0 01.5-.5h11.793l-3.147-3.146a.5.5 0 01.708-.708l4 4a.5.5 0 010 .708l-4 4a.5.5 0 01-.708-.708L13.293 8.5H1.5A.5.5 0 011 8z"
/>
</svg>
</i>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="contact">
<div class="container">
<div class="contact">
<h2 class="h2-yellow h2-res">Contact</h2>
<div class="contact__boxes">
<div class="contact__boxes--box">
<i>
<svg
viewBox="0 0 24 24"
fill="currentColor"
height="1.4em"
width="1.4em"
>
<path
d="M12 2C7.589 2 4 5.589 4 9.995 3.971 16.44 11.696 21.784 12 22c0 0 8.029-5.56 8-12 0-4.411-3.589-8-8-8zm0 12c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"
/>
</svg>
</i>
<div class="contact__boxes--box-content">
<p>
Baku city, Yeni Yasamal, Dadash Bunyadzade st. 9. (next to
Bravo s/m)
</p>
</div>
</div>
<div class="contact__boxes--box">
<i>
<svg
fill="currentColor"
viewBox="0 0 16 16"
height="1.4em"
width="1.4em"
>
<path
fillRule="evenodd"
d="M1.885.511a1.745 1.745 0 012.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 00.178.643l2.457 2.457a.678.678 0 00.644.178l2.189-.547a1.745 1.745 0 011.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 01-7.01-4.42 18.634 18.634 0 01-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z"
/>
</svg>
</i>
<div class="contact__boxes--box-content">
<a href="tel:994 77 377 34 99">994 77 377 34 99</a>
<a href="tel:994 77 377 34 99">994 77 377 34 99</a>
</div>
</div>
<div class="contact__boxes--box">
<i>
<svg
viewBox="0 0 900 1000"
fill="currentColor"
height="1.4em"
width="1.4em"
>
<path
d="M30 264C8.667 252-.667 238.667 2 224c1.333-9.333 10-14 26-14h846c25.333 0 32 10.667 20 32-5.333 9.333-13.333 16.667-24 22-9.333 4-73.333 38-192 102s-179.333 96.667-182 98c-10.667 6.667-26 10-46 10-18.667 0-34-3.333-46-10-2.667-1.333-63.333-34-182-98S39.333 268 30 264m850 100c13.333-6.667 20-3.333 20 10v368c0 10.667-5.667 21.333-17 32-11.333 10.667-22.333 16-33 16H50c-10.667 0-21.667-5.333-33-16-11.333-10.667-17-21.333-17-32V374c0-13.333 6.667-16.667 20-10l384 200c12 6.667 27.333 10 46 10s34-3.333 46-10l384-200"
/>
</svg>
</i>
<div class="contact__boxes--box-content">
<a href="mail:info@myclean.az">info@myclean.az</a>
</div>
</div>
<div class="contact__boxes--box">
<a href="#">
<i>
<svg
viewBox="0 0 24 24"
fill="currentColor"
height="1.4em"
width="1.4em"
>
<path
d="M13.397 20.997v-8.196h2.765l.411-3.209h-3.176V7.548c0-.926.258-1.56 1.587-1.56h1.684V3.127A22.336 22.336 0 0014.201 3c-2.444 0-4.122 1.492-4.122 4.231v2.355H7.332v3.209h2.753v8.202h3.312z"
/>
</svg>
</i>
</a>
<a href="#">
<i>
<svg
viewBox="0 0 1024 1024"
fill="currentColor"
height="1.4em"
width="1.4em"
>
<path
d="M512 306.9c-113.5 0-205.1 91.6-205.1 205.1S398.5 717.1 512 717.1 717.1 625.5 717.1 512 625.5 306.9 512 306.9zm0 338.4c-73.4 0-133.3-59.9-133.3-133.3S438.6 378.7 512 378.7 645.3 438.6 645.3 512 585.4 645.3 512 645.3zm213.5-394.6c-26.5 0-47.9 21.4-47.9 47.9s21.4 47.9 47.9 47.9 47.9-21.3 47.9-47.9a47.84 47.84 0 00-47.9-47.9zM911.8 512c0-55.2.5-109.9-2.6-165-3.1-64-17.7-120.8-64.5-167.6-46.9-46.9-103.6-61.4-167.6-64.5-55.2-3.1-109.9-2.6-165-2.6-55.2 0-109.9-.5-165 2.6-64 3.1-120.8 17.7-167.6 64.5C132.6 226.3 118.1 283 115 347c-3.1 55.2-2.6 109.9-2.6 165s-.5 109.9 2.6 165c3.1 64 17.7 120.8 64.5 167.6 46.9 46.9 103.6 61.4 167.6 64.5 55.2 3.1 109.9 2.6 165 2.6 55.2 0 109.9.5 165-2.6 64-3.1 120.8-17.7 167.6-64.5 46.9-46.9 61.4-103.6 64.5-167.6 3.2-55.1 2.6-109.8 2.6-165zm-88 235.8c-7.3 18.2-16.1 31.8-30.2 45.8-14.1 14.1-27.6 22.9-45.8 30.2C695.2 844.7 570.3 840 512 840c-58.3 0-183.3 4.7-235.9-16.1-18.2-7.3-31.8-16.1-45.8-30.2-14.1-14.1-22.9-27.6-30.2-45.8C179.3 695.2 184 570.3 184 512c0-58.3-4.7-183.3 16.1-235.9 7.3-18.2 16.1-31.8 30.2-45.8s27.6-22.9 45.8-30.2C328.7 179.3 453.7 184 512 184s183.3-4.7 235.9 16.1c18.2 7.3 31.8 16.1 45.8 30.2 14.1 14.1 22.9 27.6 30.2 45.8C844.7 328.7 840 453.7 840 512c0 58.3 4.7 183.2-16.2 235.8z"
/>
</svg>
</i>
</a>
<a href="#">
<i>
<svg
viewBox="0 0 1024 1024"
fill="currentColor"
height="1.4em"
width="1.4em"
>
<path
d="M941.3 296.1a112.3 112.3 0 00-79.2-79.3C792.2 198 512 198 512 198s-280.2 0-350.1 18.7A112.12 112.12 0 0082.7 296C64 366 64 512 64 512s0 146 18.7 215.9c10.3 38.6 40.7 69 79.2 79.3C231.8 826 512 826 512 826s280.2 0 350.1-18.8c38.6-10.3 68.9-40.7 79.2-79.3C960 658 960 512 960 512s0-146-18.7-215.9zM423 646V378l232 133-232 135z"
/>
</svg>
</i>
</a>
<a href="#">
<i>
<svg
viewBox="0 0 448 512"
fill="currentColor"
height="1.4em"
width="1.4em"
>
<path
d="M448 209.91a210.06 210.06 0 01-122.77-39.25v178.72A162.55 162.55 0 11185 188.31v89.89a74.62 74.62 0 1052.23 71.18V0h88a121.18 121.18 0 001.86 22.17A122.18 122.18 0 00381 102.39a121.43 121.43 0 0067 20.14z"
/>
</svg>
</i>
</a>
</div>
</div>
</div>
</div>
</section>
<section id="map">
<div class="map-contact">
<iframe
src="https://my.atlist.com/map/f19392ce-1935-40f2-9f8a-2a2d602f8c26/?share=true"
allow="geolocation 'self' https://my.atlist.com"
width="100%"
height="600px"
loading="lazy"
frameborder="0"
scrolling="no"
allowfullscreen
id="atlist-embed"
></iframe>
</div>
</section>
</main>
<footer id="footer">
<div class="container">
<div class="footer">
<div class="footer__img">
<div class="footer__img--left">
<a href="index.html">
<img src="assets/img/logo.png" alt="Logo" />
</a>
</div>
</div>
<div class="footer__nav">
<nav>
<div class="footer__nav--list">
<ul>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="products.html">Products</a></li>
</ul>
</div>
<div class="footer__nav--list">
<ul>
<li><a href="cars.html">Cars</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="footer__nav--list">
<ul>
<li><a href="https://realextaz.web.app/">Follow us!</a></li>
<li>
<a href="https://www.instagram.com/chvrlixh/">
<i>
<svg
viewBox="0 0 1024 1024"
fill="currentColor"
height="1.2em"
width="1.2em"
>
<path
d="M512 306.9c-113.5 0-205.1 91.6-205.1 205.1S398.5 717.1 512 717.1 717.1 625.5 717.1 512 625.5 306.9 512 306.9zm0 338.4c-73.4 0-133.3-59.9-133.3-133.3S438.6 378.7 512 378.7 645.3 438.6 645.3 512 585.4 645.3 512 645.3zm213.5-394.6c-26.5 0-47.9 21.4-47.9 47.9s21.4 47.9 47.9 47.9 47.9-21.3 47.9-47.9a47.84 47.84 0 00-47.9-47.9zM911.8 512c0-55.2.5-109.9-2.6-165-3.1-64-17.7-120.8-64.5-167.6-46.9-46.9-103.6-61.4-167.6-64.5-55.2-3.1-109.9-2.6-165-2.6-55.2 0-109.9-.5-165 2.6-64 3.1-120.8 17.7-167.6 64.5C132.6 226.3 118.1 283 115 347c-3.1 55.2-2.6 109.9-2.6 165s-.5 109.9 2.6 165c3.1 64 17.7 120.8 64.5 167.6 46.9 46.9 103.6 61.4 167.6 64.5 55.2 3.1 109.9 2.6 165 2.6 55.2 0 109.9.5 165-2.6 64-3.1 120.8-17.7 167.6-64.5 46.9-46.9 61.4-103.6 64.5-167.6 3.2-55.1 2.6-109.8 2.6-165zm-88 235.8c-7.3 18.2-16.1 31.8-30.2 45.8-14.1 14.1-27.6 22.9-45.8 30.2C695.2 844.7 570.3 840 512 840c-58.3 0-183.3 4.7-235.9-16.1-18.2-7.3-31.8-16.1-45.8-30.2-14.1-14.1-22.9-27.6-30.2-45.8C179.3 695.2 184 570.3 184 512c0-58.3-4.7-183.3 16.1-235.9 7.3-18.2 16.1-31.8 30.2-45.8s27.6-22.9 45.8-30.2C328.7 179.3 453.7 184 512 184s183.3-4.7 235.9 16.1c18.2 7.3 31.8 16.1 45.8 30.2 14.1 14.1 22.9 27.6 30.2 45.8C844.7 328.7 840 453.7 840 512c0 58.3 4.7 183.2-16.2 235.8z"
/>
</svg>
</i>
</a>
<a href="#">
<i>
<svg
viewBox="0 0 24 24"
fill="currentColor"
height="1.2em"
width="1.2em"
>
<path
d="M13.397 20.997v-8.196h2.765l.411-3.209h-3.176V7.548c0-.926.258-1.56 1.587-1.56h1.684V3.127A22.336 22.336 0 0014.201 3c-2.444 0-4.122 1.492-4.122 4.231v2.355H7.332v3.209h2.753v8.202h3.312z"
/>
</svg>
</i>
</a>
<a href="#">
<i>
<svg
viewBox="0 0 1024 1024"
fill="currentColor"
height="1.2em"
width="1.2em"
>
<path
d="M941.3 296.1a112.3 112.3 0 00-79.2-79.3C792.2 198 512 198 512 198s-280.2 0-350.1 18.7A112.12 112.12 0 0082.7 296C64 366 64 512 64 512s0 146 18.7 215.9c10.3 38.6 40.7 69 79.2 79.3C231.8 826 512 826 512 826s280.2 0 350.1-18.8c38.6-10.3 68.9-40.7 79.2-79.3C960 658 960 512 960 512s0-146-18.7-215.9zM423 646V378l232 133-232 135z"
/>
</svg>
</i>
</a>
<a href="#">
<i>
<svg
viewBox="0 0 448 512"
fill="currentColor"
height="1.2em"
width="1.2em"
>
<path
d="M448 209.91a210.06 210.06 0 01-122.77-39.25v178.72A162.55 162.55 0 11185 188.31v89.89a74.62 74.62 0 1052.23 71.18V0h88a121.18 121.18 0 001.86 22.17A122.18 122.18 0 00381 102.39a121.43 121.43 0 0067 20.14z"
/>
</svg>
</i>
</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</div>
<div id="byAuthor">
<p>
© 2024 All Right Reserved. Developed by
<a href="https://github.com/ChvrlixH">Huseyn Ahadzada</a>
</p>
</div>
</footer>
</body>
</html>