-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
341 lines (326 loc) · 14.6 KB
/
index.html
File metadata and controls
341 lines (326 loc) · 14.6 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Yana Kovtun</title>
<link type="image/ico" sizes="32x32" rel="shortcut icon" href="/images/logo/favicon.ico">
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="stylesheet" href="assets/css/fontawesome.css" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400;1,500&display=swap"
rel="stylesheet" />
</head>
<body>
<!-- Start the NAVBAR section -->
<nav class="navbar navbar-expand-lg navbar-dark menu shadow fixed-top">
<div class="container">
<a class="navbar-brand" href="#">
<img src="images/logo/logo.png" alt="logo Yana Kovtun" style="width: 40px" />
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end nav_container" id="navbarNav">
<ul class="nav nav-tabs nav_list">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Start Intro Section -->
<section id="about" class="intro-section mb-5">
<div class="container">
<div class="row align-items-center text-white">
<div class="col-md-6 intros">
<div class="intro-heading mb-4">
<h1 class="display-2 mb-3">Hello!, I'm Yana Kovtun</h1>
<p class="h2 lh-base">Front-end Developer from Kyiv</p>
</div>
<a href="#projects" class="btn rounded-pill btn-rounded">See my works
<span>
<i class="fas fa-arrow-down"></i>
</span>
</a>
</div>
<div class="col-md-6 intros text-end">
<div class="intro-img">
<div class="ticker">
<img src="images/arts/ticker.png" alt="ticker" class="img-fluid" />
</div>
<img src="images/arts//intro-developer.png" alt="Developer is working" class="img-fluid" />
</div>
</div>
</div>
</div>
</section>
<!--Start Projects Section -->
<section id="projects" class="projects pt-lg-3">
<div class="container">
<div class="row text-center mb-5">
<h1 class="display-4">My Projects</h1>
<div class="heading-line"></div>
</div>
<div class="row pt-lg-5 pb-5">
<div id="carouselNetflix" class="carousel slide col-12 col-lg-6 order-lg-first order-last pt-5 pt-lg-0"
data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselNetflix" data-bs-slide-to="0" class="active"
aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselNetflix" data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselNetflix" data-bs-slide-to="2" aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="/images/projects/netflix/main.png" class="d-block w-100" alt="Netflix main page" />
</div>
<div class="carousel-item">
<img src="/images/projects/netflix/episodes.png" class="d-block w-100" alt="Episodes of the series" />
</div>
<div class="carousel-item">
<img src="/images/projects/netflix/all.png" class="d-block w-100" alt="List of all movies" />
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselNetflix" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselNetflix" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<div class="col-12 col-lg-6 ps-lg-5 pt-3 pt-lg-0">
<h1 class="display-6 text-center fw-bold">Netflix</h1>
<div class="description h5 lh-base px-4 px-lg-2 mt-3 text-center text-md-start">
<p>
Netflix is a test updated version of the well-known
site. This is my first big project using ReactJS, React Hooks and React Router.
This a desktop version of the site.
</p>
<p class="icons d-flex justify-content-center">
The project was created using: <span class="ms-2"> React <i class="fa-brands fa-react"></i></span> <span>
SCSS
<i class="fa-brands fa-sass"></i></span>
</p>
<div class="buttons pt-lg-3 pt-4">
<div>
<a href="https://netflix-redesignnn.netlify.app/" target="_blank"
class="btn rounded-pill btn-rounded btn__project me-3">Visit Website
<span>
<i class="fas fa-arrow-right"></i>
</span>
</a>
</div>
<div>
<a href="https://github.com/liyakot/Netflix-redesign" target="_blank"
class="btn rounded-pill btn-rounded btn__project">See Code
<span>
<i class="fas fa-arrow-right"></i>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="row mt-lg-5 pt-lg-4 pb-5 mt-3">
<div class="col-12 col-lg-6 pe-lg-4 pt-3 pt-lg-0">
<h1 class="display-6 text-center fw-bold">E-Commerce App</h1>
<div class="description h5 lh-base px-4 px-lg-2 mt-3 text-center text-md-start">
<p>
An e-commerce application for online shopping using ReactJS and Redux Toolkit with Firebase API. It is a
piece of software that allows customers to browse and select items in a test online store.
</p>
<p class="icons d-flex justify-content-center">
The project was created using: <span class="ms-2"> React-Redux <i class="fa-brands fa-react"></i></span>
<span>
MUI
<i class="fa-solid fa-palette"></i>
</span>
</p>
<div class="buttons pt-4 pt-lg-3">
<div>
<a href="https://e-commerceeeee.netlify.app/" target="_blank"
class="btn rounded-pill btn-rounded btn__project me-3">Visit Website
<span>
<i class="fas fa-arrow-right"></i>
</span>
</a>
</div>
<div>
<a href="https://github.com/liyakot/e-Commerce-App" target="_blank"
class="btn rounded-pill btn-rounded btn__project">See Code
<span>
<i class="fas fa-arrow-right"></i>
</span>
</a>
</div>
</div>
</div>
</div>
<div id="carouselCommerce" class="carousel slide col-12 col-lg-6 pt-5 pt-lg-0 " data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselCommerce" data-bs-slide-to="0" class="active"
aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselCommerce" data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselCommerce" data-bs-slide-to="2" aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="/images/projects/e-commerce/main.png" class="d-block w-100" alt="E-Commerce main page" />
</div>
<div class="carousel-item">
<img src="/images/projects/e-commerce/products.png" class="d-block w-100" alt="Products page" />
</div>
<div class="carousel-item">
<img src="/images/projects/e-commerce/login.png" class="d-block w-100" alt="Authorization" />
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselCommerce" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselCommerce" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
<div class="row mt-lg-5 pt-lg-4 mt-3">
<div class="col-12 col-lg-6 ps-lg-5 pt-3 pt-lg-0">
<h1 class="display-6 text-center fw-bold">AIM-Game</h1>
<div class="description h5 lh-base px-4 px-lg-2 mt-3 text-center text-md-start">
<p>
The game is essentially a test of reflexes and speed. The essence of the game is to hit the circle that
appears in different corners of the board.
</p>
<p class="icons d-flex justify-content-center">
The project was created using: <span class="ms-2"> JavaScript <i class="fa-brands fa-js"></i></span>
<span>
CSS3
<i class="fa-brands fa-css3-alt"></i></span>
</p>
<div class="buttons pt-4 pt-lg-3">
<div>
<a href="https://aimgame8.netlify.app/" target="_blank"
class="btn rounded-pill btn-rounded btn__project me-3">Visit Website
<span>
<i class="fas fa-arrow-right"></i>
</span>
</a>
</div>
<div>
<a href="https://github.com/liyakot/AIM-Game" target="_blank"
class="btn rounded-pill btn-rounded btn__project">See Code
<span>
<i class="fas fa-arrow-right"></i>
</span>
</a>
</div>
</div>
</div>
</div>
<div id="carouselAim-game" class="carousel slide col-12 col-lg-6 pt-5 pt-lg-0 order-lg-first order-last"
data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselAim-game" data-bs-slide-to="0" class="active"
aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselAim-game" data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselAim-game" data-bs-slide-to="2" aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="/images/projects/aim-game/main.png" class="d-block w-100" alt="AIM-Game main page" />
</div>
<div class="carousel-item">
<img src="/images/projects/aim-game/board.png" class="d-block w-100" alt="Game Board" />
</div>
<div class="carousel-item">
<img src="/images/projects/aim-game/score.png" class="d-block w-100" alt="Restart Game" />
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselAim-game" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselAim-game" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
<div class="col-12 mt-5 pt-5 text-center">
<a href="https://github.com/liyakot?tab=repositories" target="_blank"
class="btn rounded-pill btn-rounded btn-white-background">See more on GitHub
<span>
<i class="fa-brands fa-github"></i>
</span>
</a>
</div>
</div>
</div>
</section>
<!-- Start Footer Section -->
<section id="contact" class="contact">
<div class="container pt-5 pb-5 pb-xl-1">
<div class="row">
<div class="col-12 text-center">
<a href="#home">
<img src="images/logo/logo.png" alt="Logo" class="img-fluid" style="width: 70px" />
</a>
</div>
</div>
<div class="row row-cols-auto justify-content-center mt-4">
<div class="col contact__link">
<a href="https://codepen.io/YanaKovtun" target="_blank" class="">
<span>
<i class="fa-brands fa-codepen"></i>
</span>
</a>
</div>
<div class="col contact__link">
<a href="https://github.com/liyakot" target="_blank" class="">
<span>
<i class="fa-brands fa-github"></i>
</span>
</a>
</div>
<div class="col contact__link">
<a href="https://www.instagram.com/janakovtun/" target="_blank" class="">
<span>
<i class="fa-brands fa-instagram"></i>
</span>
</a>
</div>
<div class="col contact__link">
<a href="https://www.linkedin.com/in/yana-kovtun-7bbb70252/" target="_blank" class="">
<span>
<i class="fa-brands fa-linkedin-in"></i>
</span>
</a>
</div>
<div class="col contact__link">
<a href="mailto:yanakovtun121@gmail.com" target="_blank" class="">
<span>
<i class="fa-regular fa-envelope"></i>
</span>
</a>
</div>
</div>
</div>
</section>
<script src="/assets/js/script.js"></script>
<script src="/assets/js/bootstrap.bundle.min.js"></script>
</body>
</html>