-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv.html
72 lines (72 loc) · 2.49 KB
/
cv.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Victor Pogorelov - Super Hero - CV</title>
<style>
.doc-area-wrap{
width: 100%;
font-family: sans-serif;
padding: 100px 0px 100px 0px;
}
.doc-area{
width: 800px;
margin: auto;
}
</style>
</head>
<body itemscope itemtype="https://schema.org/Person">
<div class="doc-area-wrap">
<header class="doc-area">
<h1 itemprop="name">Victor Pogorelov</h1>
<div itemprop="telephone">tel: +375 44 7384231</div>
<div itemprop="email">email: [email protected]</div>
</header>
<main class="doc-area">
<p>
I'm a telecom professional with 20 years of experience in wireless networks.
I have an engineering background enriched with sales and project management functions.
Coding is not the primary function I do but ability to code helps me to make my primary
tasks quickly and efficiently. My reason to attend the course is based on a desire to
systematize and make more production like my coding works.
</p>
<article>
<h2>Coding skills</h2>
<p itemprop="knows">
Python, VBA, JavaScript, SQL
</p>
</article>
<article class="">
<h2>Code example</h2>
<code>
alert('Hello World");
</code>
</article>
<article class="">
<h2>Work experience</h2>
<ul>
<li itemprop="worksFor">2003 - JV BelCel</li>
<li itemprop="worksFor">2007 - Ericsson</li>
<li itemprop="worksFor">2009 - Nokia</li>
<li itemprop="worksFor">2018 - Independent consultant</li>
</ul>
</article>
<article class="">
<h2>Education</h2>
<ul>
<li itemprop="alumniOf">Belarusian State University of Information Science and Radioengineering. Computer systems and networks facultet.</li>
<li itemprop="alumniOf">Variety of technical and non-technical training from Ericsson and Nokia.</li>
</ul>
</article>
<article class="">
<h2>Languages</h2>
<ul>
<li itemprop="knowsLanguage">English C level</li>
<li itemprop="knowsLanguage">Belarusian Native</li>
<li itemprop="knowsLanguage">Russian Native</li>
</ul>
</article>
</main>
</div>
</body>
</html>