-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
139 lines (127 loc) · 4.73 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Портфолио</title>
<link href="./css/reset.css" rel="stylesheet" />
<link href="./css/main.css" rel="stylesheet" />
<link href="./css/media.css" rel="stylesheet" />
<link rel="icon" type="image/x-icon" href="./img/icons/favicon.svg">
<link rel="apple-touch-icon" sizes="180x180" href="./img/icons/apple-touch-icon.svg">
</head>
<body>
<header class="header">
<div class="container">
<div class="header__row">
<img
class="header__img"
src="./img/photo.jpg"
alt="photo"
srcset="./img/[email protected]"
/>
<div class="header__desc">
<h1 class="header__title">Софья Илясова</h1>
<p class="header__text">
фрилансер, веб-разработчик, <br />создание сайтов
</p>
<div class="header__btns">
<a class="btn" href="#portfolio">Портфолио</a>
<a class="btn-outline" href="#contacts">Контакты</a>
</div>
</div>
</div>
</div>
<video class="header__video" autoplay muted loop>
<source type="video/mp4" src="./media/180226_A_03.mp4">
</video>
</header>
<main>
<section class="portfolio" id="portfolio">
<div class="container">
<h2 class="portfolio__title">Портфолио</h2>
<div class="portfolio__projects">
<article class="project">
<a href="./panto.html">
<img
class="project__img"
src="./img/projects/project-01.jpg"
srcset="./img/projects/[email protected]"
alt="изображение проекта Сайт магазина мебели"
/>
</a>
<h3 class="project__title">
<a href="./panto.html"> Сайт магазина мебели </a>
</h3>
</article>
<article class="project">
<a href="./goTravel.html">
<img
class="project__img"
src="./img/projects/project-02.jpg"
srcset="./img/projects/[email protected]"
alt="изображение проекта Сайт туристического агентства"
/>
</a>
<h3 class="project__title">
<a href="./goTravel.html"> Сайт туристического агентства </a>
</h3>
</article>
<article class="project">
<a href="./loftHouse.html">
<img
class="project__img"
src="./img/projects/project-03.jpg"
srcset="./img/projects/[email protected]"
alt="изображение проекта Сайт жилого комплекса"
/>
</a>
<h3 class="project__title">
<a href="./loftHouse.html"> Сайт жилого комплекса </a>
</h3>
</article>
</div>
</div>
</section>
<section class="contacts" id="contacts">
<div class="container">
<h2 class="contacts__title">Контакты</h2>
<div class="contacts__messangers">
<a class="messanger" href="https://t.me/kuzpugonka" target="_blank">
<img src="./img/icons/telegram.svg" alt=" Telegram" />
Написать в Telegram
</a>
<a
class="messanger"
href="https://wa.me/79106599255"
target="_blank"
>
<img src="./img/icons/whatsapp.svg" alt="WhatsApp" />
Отправить в WhatsApp
</a>
<a
class="messanger"
href="https://vk.me/kuzpugonka"
target="_blank"
>
<img src="./img/icons/vk.svg" alt="Вконтакте" />
Связаться Вконтакте
</a>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="container">
<div class="footer__inner">
<p>
© Софья Илясова
<br />
HTML верстальщик, создание сайтов, Тамбов
</p>
<p>💻 Макет сверстан на курсе в ВебКадеми</p>
</div>
</div>
</footer>
</body>
</html>