-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1065 lines (1038 loc) · 40 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
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="ru">
<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>WebStudio Main</title>
<!-- Подключение нормалайза через CDN -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/modern-normalize/1.0.0/modern-normalize.min.css"
integrity="sha512-ISS7cAi1PEhQ8jnbJpJZMd29NlhNj4AWYyLOSp2CE/CsHxTCu+r+t0D2yoJudVrd0/8fTVPUVDzY5Tvli75u/g=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- Подключение шрифтов с гугла -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@700&family=Roboto:wght@400;500;700;900&display=swap"
rel="stylesheet"
/>
<!-- подключаем свои стили [ SCSS ] -->
<link rel="stylesheet" href="./css/main.min.css" />
<!-- подключаем свои стили [ CSS ] -->
<!-- <link rel="stylesheet" href="./css/styles.css" /> -->
</head>
<body>
<!-- Шапка -->
<header class="header" id="id__page-header">
<!-- Главная навигация -->
<div class="header__container container">
<!-- Лого -->
<a
href="./index.html"
class="logo main-nav__logo"
aria-label="link to the main page via logo"
>
Web<span class="main-nav__logo--black">Studio</span></a
>
<!-- Випадающее Меню в $mobile -->
<div class="menu" data-menu>
<nav class="main-nav">
<!-- Навигация -->
<ul class="site-nav">
<li class="site-nav__item">
<a
href="./index.html"
class="site-nav__link link current"
aria-label="link to the studio page"
>Студия</a
>
</li>
<li class="site-nav__item">
<a
href="./portfolio.html"
class="site-nav__link link"
aria-label="link to the portfolio page"
>Портфолио</a
>
</li>
<li class="site-nav__item">
<a
href="#id__footer-address"
class="site-nav__link link"
aria-label="link to the contacts page"
>Контакты</a
>
</li>
</ul>
</nav>
<!-- Контакты -->
<ul class="contacts">
<li class="contacts__item">
<a
class="contacts__link link"
href="mailto:[email protected]"
aria-label="contact email link"
>
<svg class="contacts__icon" width="16" height="12">
<use href="./images/icons.svg#icon-envelope"></use>
</svg>
>
</li>
<li class="contacts__item">
<a
class="contacts__link contacts__link--accented link"
href="tel:+380961111111"
aria-label="contact phone number"
>
<svg class="contacts__icon" width="10" height="16">
<use href="./images/icons.svg#icon-smartphone"></use>
</svg>
+38 096 111 11 11</a
>
</li>
</ul>
<!-- Список соц.сетей в дроп-меню $mobile [ 0px -> 767px ] -->
<div class="menu__container">
<ul class="menu__list">
<li class="menu__item list">
<a class="menu__link link" href="#">Instagram</a>
</li>
<li class="menu__item list">
<a class="menu__link link" href="#">Twitter</a>
</li>
<li class="menu__item list">
<a class="menu__link link" href="#">Facebook</a>
</li>
<li class="menu__item list">
<a class="menu__link link" href="#">LinkedIn</a>
</li>
</ul>
</div>
</div>
<!-- Кнопка Меню на $mobile [ 0px -> 767px ] -->
<button
type="button"
class="menu-button"
aria-expanded="false"
data-menu-button
>
<svg
width="40"
height="40"
aria-label="Переключатель мобильного меню"
>
<use
class="menu-button__close"
href="./images/icons.svg#icon-close"
></use>
<use
class="menu-button__open"
href="./images/icons.svg#icon-menu24px"
></use>
</svg>
</button>
</div>
</header>
<!-- Main главной страницы -->
<main>
<!-- Баннер -->
<section class="hero">
<h1 class="hero__title">Эффективные решения для вашего бизнеса</h1>
<button
class="button"
data-modal-open
type="button"
aria-label="Order studio service"
>
Заказать услугу
</button>
</section>
<!-- Особенности -->
<section class="features section">
<div class="container">
<h2 class="title visually-hidden">Особенности</h2>
<ul class="features__list">
<li class="features__item">
<div class="features__thumb">
<svg class="features__icon">
<use href="./images/icons.svg#icon-antenna"></use>
</svg>
</div>
<h3 class="features__title">Внимание к деталям</h3>
<p class="features__text">
Идейные соображения, а также начало повседневной работы по
формированию позиции.
</p>
</li>
<li class="features__item">
<div class="features__thumb">
<svg class="features__icon">
<use href="./images/icons.svg#icon-clock"></use>
</svg>
</div>
<h3 class="features__title">Пунктуальность</h3>
<p class="features__text">
Задача организации, в особенности же рамки и место обучения
кадров влечет за собой.
</p>
</li>
<li class="features__item">
<div class="features__thumb">
<svg class="features__icon">
<use href="./images/icons.svg#icon-diagram"></use>
</svg>
</div>
<h3 class="features__title">Планирование</h3>
<p class="features__text">
Равным образом консультация с широким активом в значительной
степени обуславливает.
</p>
</li>
<li class="features__item">
<div class="features__thumb">
<svg class="features__icon">
<use href="./images/icons.svg#icon-astronaut"></use>
</svg>
</div>
<h3 class="features__title">Современные технологии</h3>
<p class="features__text">
Значимость этих проблем настолько очевидна, что реализация
плановых заданий.
</p>
</li>
</ul>
</div>
</section>
<!-- Чем мы занимаемся -->
<section class="works section">
<div class="container">
<h2 class="title">Чем мы занимаемся</h2>
<ul class="works__list">
<!-- Box01 -->
<li class="works__item">
<picture>
<!-- Min = 1200px. Desktop -->
<source
srcset="
./images/box/box01/box01-desktop.webp 1x,
./images/box/box01/[email protected] 2x
"
type="image/webp"
media="(min-width: 1200px)"
/>
<source
srcset="
./images/box/box01/box01-desktop.jpg 1x,
./images/box/box01/[email protected] 2x
"
media="(min-width: 1200px)"
/>
<img
class="works__image"
src="#"
alt="крупный план программист работает за столом в офисе"
/>
</picture>
<div class="works__thumb">
<p class="works__text">Десктопные приложения</p>
</div>
</li>
<!-- Box02 -->
<li class="works__item">
<picture>
<!-- Min = 1200px. Desktop -->
<source
srcset="
./images/box/box02/box02-desktop.webp 1x,
./images/box/box02/[email protected] 2x
"
type="image/webp"
media="(min-width: 1200px)"
/>
<source
srcset="
./images/box/box02/box02-desktop.jpg 1x,
./images/box/box02/[email protected] 2x
"
media="(min-width: 1200px)"
/>
<img
class="works__image"
src="#"
alt="веб-дизайнеры веб-интерфейсов разрабатывают приложения для смартфонов"
/>
</picture>
<div class="works__thumb">
<p class="works__text">Мобильные приложения</p>
</div>
</li>
<!-- Box03 -->
<li class="works__item">
<picture>
<!-- Min = 1200px. Desktop -->
<source
srcset="
./images/box/box03/box03-desktop.webp 1x,
./images/box/box03/[email protected] 2x
"
type="image/webp"
media="(min-width: 1200px)"
/>
<source
srcset="
./images/box/box03/box03-desktop.jpg 1x,
./images/box/box03/[email protected] 2x
"
media="(min-width: 1200px)"
/>
<img
class="works__image"
src="#"
alt="креативный художник веб-дизайна с рабочим графическим планшетом для выбора цвета"
/>
</picture>
<div class="works__thumb">
<p class="works__text">Дизайнерские решения</p>
</div>
</li>
</ul>
</div>
</section>
<!-- Наша команда -->
<section class="team section">
<div class="container">
<h2 class="title">Наша команда</h2>
<ul class="team__list">
<!-- Игорь Демьяненко -->
<li class="team__item">
<picture>
<!-- Max = 767px. Mobile -->
<source
srcset="
./images/team/team01/team01-mobile.webp 1x,
./images/team/team01/[email protected] 2x
"
type="image/webp"
media="(max-width: 767px)"
/>
<source
srcset="
./images/team/team01/team01-mobile.jpg 1x,
./images/team/team01/[email protected] 2x
"
media="(max-width: 767px)"
/>
<!-- Max = 1199px. Tablet -->
<source
srcset="
./images/team/team01/team01-tablet.webp 1x,
./images/team/team01/[email protected] 2x
"
type="image/webp"
media="(max-width: 1199px)"
/>
<source
srcset="
./images/team/team01/team01-tablet.jpg 1x,
./images/team/team01/[email protected] 2x
"
media="(max-width: 1199px)"
/>
<!-- Min = 1200px. Desktop -->
<source
srcset="
./images/team/team01/team01-desktop.webp 1x,
./images/team/team01/[email protected] 2x
"
type="image/webp"
media="(min-width: 1200px)"
/>
<source
srcset="
./images/team/team01/team01-desktop.jpg 1x,
./images/team/team01/[email protected] 2x
"
media="(min-width: 1200px)"
/>
<img class="team__image" src="#" alt="Игорь Демьяненко" />
</picture>
<div class="team__box">
<h3 class="team__name">Игорь Демьяненко</h3>
<p class="team__job">Product Designer</p>
<ul class="team__socials-list">
<li class="team__social-item list">
<a
class="team__social-link link"
href="#instagram"
aria-label="Link to Игорь Демьяненко Instagram"
>
<svg class="team__social-icon" width="20" height="20">
<use href="./images/icons.svg#icon-instagram"></use>
</svg>
</a>
</li>
<li class="team__social-item list">
<a
class="team__social-link link"
href="#twitter"
aria-label="Link to Игорь Демьяненко Twitter"
>
<svg class="team__social-icon" width="20" height="20">
<use href="./images/icons.svg#icon-twitter"></use>
</svg>
</a>
</li>
<li class="team__social-item list">
<a
class="team__social-link link"
href="#facebook"
aria-label="Link to Игорь Демьяненко Facebook"
>
<svg class="team__social-icon" width="20" height="20">
<use href="./images/icons.svg#icon-facebook"></use>
</svg>
</a>
</li>
<li class="team__social-item list">
<a
class="team__social-link link"
href="#linkedin"
aria-label="Link to Игорь Демьяненко LinkedIn"
>
<svg class="team__social-icon" width="20" height="20">
<use href="./images/icons.svg#icon-linkedin"></use>
</svg>
</a>
</li>
</ul>
</div>
</li>
<!-- Ольга Репина -->
<li class="team__item">
<picture>
<!-- Max = 767px. Mobile -->
<source
srcset="
./images/team/team02/team02-mobile.webp 1x,
./images/team/team02/[email protected] 2x
"
type="image/webp"
media="(max-width: 767px)"
/>
<source
srcset="
./images/team/team02/team02-mobile.jpg 1x,
./images/team/team02/[email protected] 2x
"
media="(max-width: 767px)"
/>
<!-- Max = 1199px. Tablet -->
<source
srcset="
./images/team/team02/team02-tablet.webp 1x,
./images/team/team02/[email protected] 2x
"
type="image/webp"
media="(max-width: 1199px)"
/>
<source
srcset="
./images/team/team02/team02-tablet.jpg 1x,
./images/team/team02/[email protected] 2x
"
media="(max-width: 1199px)"
/>
<!-- Min = 1200px. Desktop -->
<source
srcset="
./images/team/team02/team02-desktop.webp 1x,
./images/team/team02/[email protected] 2x
"
type="image/webp"
media="(min-width: 1200px)"
/>
<source
srcset="
./images/team/team02/team02-desktop.jpg 1x,
./images/team/team02/[email protected] 2x
"
media="(min-width: 1200px)"
/>
<img class="team__image" src="#" alt="Ольга Репина" />
</picture>
<div class="team__box">
<h3 class="team__name">Ольга Репина</h3>
<p class="team__job">Frontend Developer</p>
<ul class="team__socials-list">
<li class="team__social-item list">
<a
class="team__social-link link"
href="#instagram"
aria-label="Link to Ольга Репина Instagram"
>
<svg class="team__social-icon" width="20" height="20">
<use href="./images/icons.svg#icon-instagram"></use>
</svg>
</a>
</li>
<li class="team__social-item list">
<a
class="team__social-link link"
href="#twitter"
aria-label="Link to Ольга Репина Twitter"
>
<svg class="team__social-icon" width="20" height="20">
<use href="./images/icons.svg#icon-twitter"></use>
</svg>
</a>
</li>
<li class="team__social-item list">
<a
class="team__social-link link"
href="#facebook"
aria-label="Link to Ольга Репина Facebook"
>
<svg class="team__social-icon" width="20" height="20">
<use href="./images/icons.svg#icon-facebook"></use>
</svg>
</a>
</li>
<li class="team__social-item list">
<a
class="team__social-link link"
href="#linkedin"
aria-label="Link to Ольга Репина LinkedIn"
>
<svg class="team__social-icon" width="20" height="20">
<use href="./images/icons.svg#icon-linkedin"></use>
</svg>
</a>
</li>
</ul>
</div>
</li>
<!-- Николай Тарасов -->
<li class="team__item">
<picture>
<!-- Max = 767px. Mobile -->
<source
srcset="
./images/team/team03/team03-mobile.webp 1x,
./images/team/team03/[email protected] 2x
"
type="image/webp"
media="(max-width: 767px)"
/>
<source
srcset="
./images/team/team03/team03-mobile.jpg 1x,
./images/team/team03/[email protected] 2x
"
media="(max-width: 767px)"
/>
<!-- Max = 1199px. Tablet -->
<source
srcset="
./images/team/team03/team03-tablet.webp 1x,
./images/team/team03/[email protected] 2x
"
type="image/webp"
media="(max-width: 1199px)"
/>
<source
srcset="
./images/team/team03/team03-tablet.jpg 1x,
./images/team/team03/[email protected] 2x
"
media="(max-width: 1199px)"
/>
<!-- Min = 1200px. Desktop -->
<source
srcset="
./images/team/team03/team03-desktop.webp 1x,
./images/team/team03/[email protected] 2x
"
type="image/webp"
media="(min-width: 1200px)"
/>
<source
srcset="
./images/team/team03/team03-desktop.jpg 1x,
./images/team/team03/[email protected] 2x
"
media="(min-width: 1200px)"
/>
<img class="team__image" src="#" alt="Николай Тарасов" />
</picture>
<div class="team__box">
<h3 class="team__name">Николай Тарасов</h3>
<p class="team__job">Marketing</p>
<ul class="team__socials-list">
<li class="team__social-item list">
<a
class="team__social-link link"
href="#instagram"
aria-label="Link to Николай Тарасов Instagram"
>
<svg class="team__social-icon" width="20" height="20">
<use href="./images/icons.svg#icon-instagram"></use>
</svg>
</a>
</li>
<li class="team__social-item list">
<a
class="team__social-link link"
href="#twitter"
aria-label="Link to Николай Тарасов Twitter"
>
<svg class="team__social-icon" width="20" height="20">
<use href="./images/icons.svg#icon-twitter"></use>
</svg>
</a>
</li>
<li class="team__social-item list">
<a
class="team__social-link link"
href="#facebook"
aria-label="Link to Николай Тарасов Facebook"
>
<svg class="team__social-icon" width="20" height="20">
<use href="./images/icons.svg#icon-facebook"></use>
</svg>
</a>
</li>
<li class="team__social-item list">
<a
class="team__social-link link"
href="#linkedin"
aria-label="Link to Николай Тарасов LinkedIn"
>
<svg class="team__social-icon" width="20" height="20">
<use href="./images/icons.svg#icon-linkedin"></use>
</svg>
</a>
</li>
</ul>
</div>
</li>
<!-- Михаил Ермаков -->
<li class="team__item">
<picture>
<!-- Max = 767px. Mobile -->
<source
srcset="
./images/team/team04/team04-mobile.webp 1x,
./images/team/team04/[email protected] 2x
"
type="image/webp"
media="(max-width: 767px)"
/>
<source
srcset="
./images/team/team04/team04-mobile.jpg 1x,
./images/team/team04/[email protected] 2x
"
media="(max-width: 767px)"
/>
<!-- Max = 1199px. Tablet -->
<source
srcset="
./images/team/team04/team04-tablet.webp 1x,
./images/team/team04/[email protected] 2x
"
type="image/webp"
media="(max-width: 1199px)"
/>
<source
srcset="
./images/team/team04/team04-tablet.jpg 1x,
./images/team/team04/[email protected] 2x
"
media="(max-width: 1199px)"
/>
<!-- Min = 1200px. Desktop -->
<source
srcset="
./images/team/team04/team04-desktop.webp 1x,
./images/team/team04/[email protected] 2x
"
type="image/webp"
media="(min-width: 1200px)"
/>
<source
srcset="
./images/team/team04/team04-desktop.jpg 1x,
./images/team/team04/[email protected] 2x
"
media="(min-width: 1200px)"
/>
<img class="team__image" src="#" alt="Михаил Ермаков" />
</picture>
<div class="team__box">
<h3 class="team__name">Михаил Ермаков</h3>
<p class="team__job">UI Designer</p>
<ul class="team__socials-list">
<li class="team__social-item list">
<a
class="team__social-link link"
href="#instagram"
aria-label="Link to Михаил Ермаков Instagram"
>
<svg class="team__social-icon" width="20" height="20">
<use href="./images/icons.svg#icon-instagram"></use>
</svg>
</a>
</li>
<li class="team__social-item list">
<a
class="team__social-link link"
href="#twitter"
aria-label="Link to Михаил Ермаков Twitter"
>
<svg class="team__social-icon" width="20" height="20">
<use href="./images/icons.svg#icon-twitter"></use>
</svg>
</a>
</li>
<li class="team__social-item list">
<a
class="team__social-link link"
href="#facebook"
aria-label="Link to Михаил Ермаков Facebook"
>
<svg class="team__social-icon" width="20" height="20">
<use href="./images/icons.svg#icon-facebook"></use>
</svg>
</a>
</li>
<li class="team__social-item list">
<a
class="team__social-link link"
href="#linkedin"
aria-label="Link to Михаил Ермаков LinkedIn"
>
<svg class="team__social-icon" width="20" height="20">
<use href="./images/icons.svg#icon-linkedin"></use>
</svg>
</a>
</li>
</ul>
</div>
</li>
</ul>
</div>
</section>
<!-- Постоянные клиенты -->
<section class="clients section">
<div class="container">
<h2 class="title">Постоянные клиенты</h2>
<ul class="client">
<!-- Клиент первый -->
<li class="client__item">
<a
class="client__link link"
href="#client-one"
aria-label="link to the our 1st client website"
>
<svg class="client__icon" width="106" height="60">
<use href="./images/icons.svg#icon-client-01"></use>
</svg>
</a>
</li>
<!-- Клиент второй -->
<li class="client__item">
<a
class="client__link link"
href="#client-two"
aria-label="link to the our 2nd client website"
>
<svg class="client__icon" width="106" height="60">
<use href="./images/icons.svg#icon-client-02"></use>
</svg>
</a>
</li>
<!-- Клиент третий -->
<li class="client__item">
<a
class="client__link link"
href="#client-three"
aria-label="link to the our 3rd client website"
>
<svg class="client__icon" width="106" height="60">
<use href="./images/icons.svg#icon-client-03"></use>
</svg>
</a>
</li>
<!-- Клиент четвертый -->
<li class="client__item">
<a
class="client__link link"
href="#client-four"
aria-label="link to the our 4th client website"
>
<svg class="client__icon" width="106" height="60">
<use href="./images/icons.svg#icon-client-04"></use>
</svg>
</a>
</li>
<!-- Клиент пятый -->
<li class="client__item">
<a
class="client__link link"
href="#client-five"
aria-label="link to the our 5th client website"
>
<svg class="client__icon" width="106" height="60">
<use href="./images/icons.svg#icon-client-05"></use>
</svg>
</a>
</li>
<!-- Клиент шестрой -->
<li class="client__item">
<a
class="client__link link"
href="#client-six"
aria-label="link to the our 6th client website"
>
<svg class="client__icon" width="106" height="60">
<use href="./images/icons.svg#icon-client-06"></use>
</svg>
</a>
</li>
</ul>
</div>
</section>
</main>
<!-- Подвал -->
<footer class="footer section">
<div class="footer__container container">
<!-- Левая часть футера -->
<div class="address__container">
<a
class="footer__logo logo"
href="#id__page-header"
aria-label="link to the main page via logo"
>
Web<span class="logo--white">Studio</span></a
>
<address class="address" id="id__footer-address">
<p class="address__text">г. Киев, пр-т Леси Украинки, 26</p>
<ul class="address__list list">
<li class="address__item">
<a
class="address__link link"
href="mailto:[email protected]"
aria-label="our email link"
>
</li>
<li class="address__item">
<a
class="address__link link"
href="tel:+380991111111"
aria-label="our phone link"
>+38 099 111 11 11</a
>
</li>
</ul>
</address>
</div>
<!-- Присоеденийтесь -->
<div class="join-container">
<b class="join-text">присоединяйтесь</b>
<ul class="join">
<li class="join__item list">
<a
class="join__link link"
href="#instagram"
aria-label="our Instagram link"
>
<svg class="join__icon" width="20" height="20">
<use href="./images/icons.svg#icon-instagram"></use>
</svg>
</a>
</li>
<li class="join__item list">
<a
class="join__link link"
href="#twitter"
aria-label="our Twitter link"
>
<svg class="join__icon" width="20" height="20">
<use href="./images/icons.svg#icon-twitter"></use>
</svg>
</a>
</li>
<li class="join__item list">
<a
class="join__link link"
href="#facebook"
aria-label="our Facebook link"
>
<svg class="join__icon" width="20" height="20">
<use href="./images/icons.svg#icon-facebook"></use>
</svg>
</a>
</li>
<li class="join__item list">
<a
class="join__link link"
href="#linkedin"
aria-label="our LinkedIn link"
>
<svg class="join__icon" width="20" height="20">
<use href="./images/icons.svg#icon-linkedin"></use>
</svg>
</a>
</li>
</ul>
</div>
<!-- Правая часть футера -->
<div class="subscription-container">
<form class="subscription" method="GET" action="#" autocomplete="off">
<label for="id__form-mail" class="subscription__label"
>Подпишитесь на рассылку</label
>
<input
class="subscription__input"
type="email"
name="mail"
id="id__form-mail"
placeholder="E-mail"
required
/>
<button
class="subscription-button"
type="submit"
aria-label="Subscribe in our telegram channel"
>
Подписаться
<svg class="subscription-button__icon" width="24" height="24">
<use href="./images/icons.svg#icon-send"></use>
</svg>
</button>
</form>
</div>
</div>
</footer>
<!-- Modal Window -->
<div class="backdrop is-hidden" data-modal>
<div class="modal">
<!-- Форма -->
<form class="form" autocomplete="off">
<p class="form__description">
Оставьте свои данные, мы вам перезвоним
</p>
<!-- Имя -->
<label class="form__field">
<input
class="form__input"
type="text"
name="name"
placeholder="Анатолий"
title="Ведите своё имя"
minlength="2"
maxlength="30"
required
/><span class="form__label">Имя</span>
<svg class="form__icon" width="18" height="18">
<use href="./images/icons.svg#icon-person"></use>
</svg>
</label>
<!-- Телефон -->
<label class="form__field">
<input
class="form__input"
type="tel"
name="tel"
placeholder="+38 000 111 22 33"
title="Ведите номер телефона в формате +380.. или 093..."
minlength="9"
maxlength="13"
required
/><span class="form__label">Телефон</span>
<svg class="form__icon" width="18" height="18">
<use href="./images/icons.svg#icon-phone"></use>
</svg>
</label>
<!-- Почта -->
<label class="form__field">
<input
class="form__input"
type="email"
name="email"
placeholder="[email protected]"
title="Введите почтовый ящик"
required
/><span class="form__label">Почта</span>
<svg class="form__icon" width="18" height="18">
<use href="./images/icons.svg#icon-email"></use>
</svg>
</label>
<!-- Комментарий -->
<label class="form__field">