-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
201 lines (201 loc) · 7.37 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
<!DOCTYPE html>
<html lang="uk">
<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</title>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/images/favicon-32x32.png"
/>
<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=Raleway:wght@700&family=Roboto:wght@400;500;700;900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./css/styles.css" />
</head>
<body>
<div class="wrapper">
<header class="header">
<div class="head-box">
<a href="./index.html" lang="en" class="logo"
>Web<span class="logo-word">Studio</span></a
>
<nav class="navigation">
<ul class="navigation-list">
<li class="nav-list-item">
<a href="./index.html" class="link current">Студія</a>
</li>
<li class="nav-list-item">
<a href="./portfolio.html" class="link">Портфоліо</a>
</li>
<li class="nav-list-item">
<a href="#" class="link">Контакти</a>
</li>
</ul>
</nav>
<div class="contact-box">
<ul class="contacts">
<li class="nav-list-item">
<a href="mailto:[email protected]" class="contact-link"
>
</li>
<li class="nav-list-item">
<a href="tel:+380961111111" class="contact-link"
>+38 096 111 11 11</a
>
</li>
</ul>
</div>
</div>
</header>
<main>
<section class="bigbox">
<h1 class="title">
Ефективні рішення для <br />
вашого бізнесу
</h1>
<button type="button" class="title-btn">Замовити послугу</button>
</section>
<section class="features">
<div class="feature-box">
<h2 class="hidden">Наші переваги</h2>
<ul class="feature-list">
<li class="feature">
<h3 class="feature-title">УВАГА ДО ДЕТАЛЕЙ</h3>
<p class="feature-text">
Ідейні міркування, і навіть початок повсякденної роботи з
формування позиції.
</p>
</li>
<li class="feature">
<h3 class="feature-title">ПУНКТУАЛЬНІСТЬ</h3>
<p class="feature-text">
Завдання організації, особливо рамки і місце навчання кадрів
тягне у себе.
</p>
</li>
<li class="feature">
<h3 class="feature-title">ПЛАНУВАННЯ</h3>
<p class="feature-text">
Так само консультація з широким активом значною мірою
зумовлює.
</p>
</li>
<li class="feature-another">
<h3 class="feature-title">СУЧАСНІ ТЕХНОЛОГІЇ</h3>
<p class="feature-text">
Значимість цих проблем настільки очевидна, що реалізація
планових завдань.
</p>
</li>
</ul>
</div>
</section>
<section class="work">
<div class="work-box">
<h2 class="work-title">Чим ми займаємося</h2>
<ul class="work-list">
<li class="work-item">
<img src="/images/img.jpg" alt="coding" width="370" />
</li>
<li class="work-item">
<img src="/images/img1.jpg" alt="adaptive layout" width="370" />
</li>
<li class="work-item">
<img src="/images/img2.jpg" alt="graphics" width="370" />
</li>
</ul>
</div>
</section>
<section class="team">
<div class="team-box">
<h2 class="team-title">Наша команда</h2>
<ul class="team-list">
<li class="team-item">
<img
src="/images/img0.jpg"
alt="Ігор Дем'яненко"
width="270"
height="260"
/>
<h3 class="team-item-title">Ігор Дем'яненко</h3>
<p class="team-item-text">Product Designer</p>
</li>
<li class="team-item">
<img
src="/images/img01.jpg"
alt="Ольга Рєпіна"
width="270"
height="260"
/>
<h3 class="team-item-title">Ольга Рєпіна</h3>
<p class="team-item-text">Frontend Developer</p>
</li>
<li class="team-item">
<img
src="/images/img02.jpg"
alt="Микола Тарасов"
width="270"
height="260"
/>
<h3 class="team-item-title">Микола Тарасов</h3>
<p class="team-item-text">Marketing</p>
</li>
<li class="team-item">
<img
src="/images/img03.jpg"
alt="Михайло Єрмаков"
width="270"
height="260"
/>
<h3 class="team-item-title">Михайло Єрмаков</h3>
<p class="team-item-text">UI Designer</p>
</li>
</ul>
</div>
</section>
</main>
<footer class="footer">
<div class="footerbox">
<a href="./index.html" lang="en" class="logo"
>Web<span class="logo-word">Studio</span></a
>
<address class="address">
<ul>
<li class="adress-item">
<a
href="https://goo.gl/maps/CPtrU1FHBa2aNyZL9"
target="_blank"
rel="noopener noreferrer nofollow"
class="address-link"
>м. Київ, пр-т Лесі Украінки, 26</a
>
</li>
<li class="adress-item">
<a
href="mailto:[email protected]"
class="contact-link contact-link--address"
>
</li>
<li class="adress-item">
<a
href="tel:+380961111111"
class="contact-link contact-link--address"
>+38 096 111 11 11</a
>
</li>
</ul>
</address>
</div>
</footer>
</div>
</body>
</html>