-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
174 lines (159 loc) · 6.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Medvediew Olexii</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Global container -->
<div class="global">
<!-- Sidebar -->
<aside class="sidebar">
<div class="optional-photo">
<img class="photo" src="img/olexii-medvediev.jpg" alt="">
</div>
<!-- contacts -->
<div class="contacts">
<h2>Contacts:</h2>
<div class="tel">
<span>tel:</span>
<a href="tel:+380673778347">+38 067 377 83 47</a>
</div>
<div class="mail">
<span>mail:</span>
<a href="mailto:[email protected]">[email protected]</a>
</div>
</div>
<!-- tech-skills -->
<div class="tech-skills">
<h2>Tech-Skills:</h2>
<ul>
<li>HTML5</li>
<li>CSS3</li>
<li>SASS</li>
<li>GIT</li>
<li>JS (ES6)</li>
<li>Node JS (npm)</li>
<li>React JS (basic)</li>
<li>VSCode</li>
<li>AutoCad</li>
<li>ArchiCad</li>
<li>3dsMax (basic)</li>
<li>Adobe Photoshop (basic)</li>
<li>Adobe Illustrator (basic)</li>
<li>Adobe Audition</li>
</ul>
</div>
<!-- soft-skills -->
<div class="soft-skills">
<h2>Soft-Skills:</h2>
<ul>
<li>Agile</li>
<li>Scrum</li>
<li>GTD</li>
<li>Teamwork</li>
<li>Critical thinking</li>
<li>Easily learnable</li>
<li>Sociability</li>
<li>Punctuality</li>
<li>Stress resistance</li>
<li>Adequacy:)</li>
</ul>
</div>
</aside>
<!-- Main-info-container -->
<div class="main-container">
<!-- Personal-info -->
<div class="personal-info">
<div class="name-block">
<h1 class="name">Olexii Medvediev</h1>
<p>junior frontend developer | draftsman | project manager</p>
</div>
<quotation class="quotation">
<p>"Logic - the ability to analyze the set of causal relationships of actions or inactions"</p>
</quotation>
</div>
<div class="personal">
<h3>Personal information:</h3>
<ul>
<li>DoB: 14/10/1990</li>
<li>Marital status: married</li>
<li>Place of residence: Lviv-Vynnyky</li>
</ul>
</div>
<!-- Work experience -->
<div class="work-exp">
<h2>Work Experience:</h2>
<!-- 1st comp -->
<div class="frst-company">
<div class="company-name"><h3>Holding of Emotions "!FEST":</h3>
<div class="frst-position">
<h4>Project Department Coordinator</h4>
<div class="time">oct 2019 - sep 2020 || Lviv, Ukraine</div>
<details class="duties"><summary>Duties:</summary>
<ul>
<li>Managing projects</li>
<li>Managing other PMs</li>
<li>Creating project's structures</li>
<li>Controlling project's progress</li>
<li>Bugeting</li>
<li>Communication and cooperation with all units</li>
<li>Work with project documentation</li>
</ul>
</details>
</div>
<div class="scnd-position">
<h4>Project Manager</h4>
<div class="time">dec 2015 - oct 2019 || Lviv, Ukraine</div>
<details class="duties"><summary>Duties:</summary>
<ul>
<li>Creating project's structures</li>
<li>Controlling project's progress</li>
<li>Cooperation with other departments and external units</li>
<li>Object-planning decisions development, other drawings</li>
<li>Work with project documentation</li>
</ul>
</details>
</div>
<div class="thrd-position">
<h4>Junior manager assistant at "First Lviv Grill Restaurant of Meat and Justice"</h4>
<div class="time">mar 2014 - dec 2015 || Lviv, Ukraine</div>
<details class="duties"><summary>Duties:</summary>
<ul>
<li>Control of line personnel</li>
<li>Work with customers</li>
<li>Work with consumables</li>
<li>Work with primary documentation</li>
</ul>
</details>
</div>
</div>
</div>
</div>
<!-- Education -->
<div class="education">
<h2>Education</h2>
<ul>
<li>
<h4>Lviv Polytechnic National University</h4>
<span>Industrial and civil construction</span>
<br><span class="time">2019 - present</span>
<span>||</span>
<span>Lviv, Ukraine</span>
</li>
<li>
<h4>KO.M. Beketov National University of Urban Economy in Kharkiv</h4>
<span>Economics of construction companies</span>
<br><span class="time">2007-2013</span>
<span>||</span>
<span>Kharkiv, Ukraine</span>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>