-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
182 lines (176 loc) · 5.93 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
<!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
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 class="page">
<header class="header">
<nav>
<a href="./index.html" class="logo"
><span class="logotype">Web</span>Studio</a
>
<!-- Навігація на інші сторінки -->
<ul class="site-nav list">
<li><a href="./index.html" class="link active">Студія</a></li>
<li>
<a href="./portfolio.html" class="link portfolio">Портфоліо</a>
</li>
<li><a href="" class="link contacts">Контакти</a></li>
</ul>
</nav>
<ul class="auth-nav list">
<li>
<a href="mailto:info@devstudio.com" class="contacts"
>info@devstudio.com</a
>
</li>
<li>
<a href="tel:+380961111111" class="contacts">+38 096 111 11 11</a>
</li>
</ul>
</header>
<main>
<!--Section-->
<section class="hero">
<h1 class="hero-title">
Ефективні рішення для<br />
вашого бізнесу
</h1>
<button type="button" class="button-hero">Замовити послугу</button>
</section>
<!--Переваги-->
<section class="section">
<h2 hidden class="section title">
Критерії ведення ефективного бізнесу
</h2>
<ul class="features-list list">
<li>
<h3 class="title">Увага до деталей</h3>
<p class="paragraph">
Ідейні міркування, і навіть початок повсякденної роботи з
формування позиції.
</p>
</li>
<li>
<h3 class="title">Пунктуальність</h3>
<p class="paragraph">
Завдання організації, особливо рамки і місце навчання кадрів тягне
у себе.
</p>
</li>
<li>
<h3 class="title">Планування</h3>
<p class="paragraph">
Так само консультація з широким активом значною мірою зумовлює.
</p>
</li>
<li>
<h3 class="title">Сучасні технології</h3>
<p class="paragraph">
Значимість цих проблем настільки очевидна, що реалізація планових
завдань.
</p>
</li>
</ul>
</section>
<section class="section">
<h2 class="section-title2">Чим ми займаємося</h2>
<ul class="list">
<li>
<img
src="./images/img.jpg"
alt="Робота за комп'ютером"
width="370"
height="294" />
</li>
<li>
<img
src="./images/img1.jpg"
alt="Робота за телефоном"
width="370"
height="294" />
</li>
<li>
<img
src="./images/img2.jpg"
alt="Робота за планшетом"
width="370"
height="294" />
</li>
</ul>
</section>
<!--Section-->
<section class="people">
<h2 class="section-title2">Наша команда</h2>
<ul class="list">
<li class="item">
<img
src="./images/img3.jpg"
alt="Чоловік"
width="270"
height="260" />
<h3 class="title2">Ігор Дем'яненко</h3>
<p class="paragraph2">Product Designer</p>
</li>
<li class="item">
<img src="./images/img4.jpg" alt="Жінка" width="270" height="260" />
<h3 class="title2">Ольга Рєпіна</h3>
<p class="paragraph2">Frontend Developer</p>
</li>
<li class="item">
<img
src="./images/img5.jpg"
alt="Чоловік"
width="270"
height="260" />
<h3 class="title2">Микола Тарасов</h3>
<p class="paragraph2">Marketing</p>
</li>
<li class="item">
<img
src="./images/img6.jpg"
alt="Чоловік"
width="270"
height="260" />
<h3 class="title2">Михайло Єрмаков</h3>
<p class="paragraph2">UI Designer</p>
</li>
</ul>
</section>
</main>
<!--address-->
<footer class="footer">
<a href="./index.html" class="logo-footer"
><span class="logotype-footer">Web</span>Studio</a
>
<address>
<ul class="list">
<li>
<a
href="https://www.google.com.ua/maps/@50.4851493,30.4721233,14z?hl=ru"
target="_blank"
rel="noopener noreferrer"
class="city"
>м. Київ, пр-т Лесі Українки, 26</a
>
</li>
<li>
<a href="mailto:info@devstudio.com" class="address"
>info@devstudio.com</a
>
</li>
<li>
<a href="tel:+380961111111" class="address">+38 096 111 11 11</a>
</li>
</ul>
</address>
</footer>
</body>
</html>