-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (111 loc) · 4.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css?family=Muli&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"
integrity="sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w=="
crossorigin="anonymous"/>
<link rel="stylesheet" href="css/style.css">
<title>Title</title>
</head>
<body>
<div class="container">
<header>
<h1 class="header">Yuriy Lipchey</h1>
</header>
<div class="content">
<aside>
<img src="img/myphoto.jpg" alt="My photo">
<figure class="contact-info">
<h3 class="contacts-header">Contact info: </h3>
<ul class="contact-list">
<li class="contact">
<img src="img/outlook.png" alt="e-mail" class="contact-icon">
<a href="mailto:[email protected]" class="contact-info">E-mail: [email protected]</a>
</li>
<li class="contact">
<img src="img/discord.png" alt="discord" class="contact-icon">
<a href="https://discord.com/channels/@me/814879396334141490/" class="contact-info">Discord:
yuriy_lipchey#0482</a>
</li>
<li class="contact">
<img src="img/telegram.png" alt="telegram" class="contact-icon">
<a href="https://t.me/yuriy_lipchey" class="contact-info">Telegram: yuriy_lipchey</a>
</li>
</ul>
</figure>
<div class="section">
<article class="about">
<h2>Summary</h2>
Currently unemployed due to my own choice. At some point, I decided to leave my previous job as a test
engineer
and
pursue a software developer career. Seems that this is the type of work that I made for. <br> I like to solve
problems
and creating something new. And software development job provides quite a rich opportunities for
this type of activities.
</article>
</div>
</aside>
<main>
<div class="section">
<h2>Skills</h2>
<ul class="skills info">
<li><span class="fas fa-bolt"></span>JavaScript</li>
<li><span class="fas fa-bolt"></span> HTML5, CSS3</li>
<li><span class="fas fa-bolt"></span>Git and Github</li>
<li><span class="fas fa-bolt"></span>VSCode, WebStorm</li>
<li><span class="fas fa-bolt"></span>C# and .NET</li>
</ul>
</div>
<div class="project-examples section">
<h2>Code examples</h2>
<div class="projects">
<a href="https://github.com/YuriyL-Git?tab=repositories">
<i class="fas fa-hand-point-right"></i>My projects on github</a>
</div>
</div>
<div class="programming-experience section">
<h2>Programming experience</h2>
<ul class="info">
<li><i class="fas fa-check"></i>Udemy - The Ultimate HTML5 Elements & CSS3</li>
<li><i class="fas fa-check"></i>Udemy - Advanced javascript concepts</li>
<li><i class="fas fa-check"></i>Udemy - JavaScript: Understanding the Weird Parts</li>
<li><i class="fas fa-check"></i>Robert Sedgewick - Algorithms and Data Structures</li>
<li><i class="fas fa-check"></i>Frontend masters - Deep JavaScript Foundations</li>
<li><i class="fas fa-check"></i>Tim Corey - Foundation in C# and .NET</li>
</ul>
</div>
<div class="professional-experience section">
<h2>Professional experience</h2>
<p class="info">Test engineer at Jabil Circuit Ukraine</p>
</div>
<div class="education section">
<h2>Education</h2>
<p class="info">Uzhgorod National University - faculty of mathematics</p>
</div>
<div class="languages section">
<h2>Languages</h2>
<ul>
<li class="info">English - Upper-Intermediate+</li>
<li class="info">Ukrainian, Russian - Native</li>
</ul>
</div>
</main>
</div>
<footer>
<a href="https://github.com/YuriyL-Git">
<img src="img/github_logo.png" alt="github" class="logo logo-git">
</a>
<a href="https://rs.school/js/">
<img src="img/rs_scool_logo.svg" alt="github" class="logo logo-rs">
</a>
<span class="created">March, 2021</span>
</footer>
</div>
</body>
</html>