-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv.html
140 lines (140 loc) · 4.74 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
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
<!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" />
<title>CV</title>
<link rel="stylesheet" href="./css/style.css" />
<link
href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap&subset=latin-ext"
rel="stylesheet"
/>
</head>
<body>
<div class="cv_container">
<header class="cv_about">
<div class="image">
<img src="./img/PiotrAdamowiczSquare.png" alt="Piotr Adamowicz" />
<div class="cv_name">
<h1>Piotr Adamowicz</h1>
<h2>Junior Front-End Developer</h2>
</div>
</div>
<aside>
<!-- TODO: Add some popup to inform viewer why ther's no link under email text -->
<span>[email protected]</span><br />
<span>(+48) 506 586 928</span><br />
<span><a href="https://github.com/PiotrAdamowicz">My Github</a></span>
</aside>
</header>
<section class="cv_aboutMe">
<h3>About Me</h3>
<p>
At present I'm aiming to become Front-End/Javascript Developer.
Working full time I try to organize from couple of mintues to few
houres a day to study Web technologies.<br />The free time that I have
left I like to read books and roller skate.
</p>
</section>
<section class="cv_workExperience">
<h3>Work Experience</h3>
<section class="job">
<h4>Sanitariusz w SP ZOZ MSWiA w Białymstoku</h4>
<span class="cv_dates">02.2019 – present </span>
<p class="job_content">
My main line of work was: transport of patients, medical samples,
lab results and supplies.
</p>
</section>
<section class="job">
<h4>Sanitariusz w Szpitalu DSK w Białystok</h4>
<span class="cv_dates">04.2016 – 01.2019 </span>
<p class="job_content">
My main line of work was: transport of patients, medical samples,
lab results and supplies.
</p>
</section>
</section>
<section class="cv_skills">
<span>HTML5</span>
<div class="popup">
<p>
Good enough for basic landing pages. I try to gain more in depth
knowledge to use less JS and more HTML.
</p>
</div>
<span>CSS3</span>
<div class="popup">
<p>
I struggle when it comes to remembering all the properties names but
I'd say I's on decent level.
</p>
</div>
<span>JavaScript</span>
<div class="popup">
<p>
I'm familiar with decent amount of modern syntax. I struggle with
DOM manipulation but I'll do it if I have to.
</p>
</div>
<span>GitHub</span>
<div class="popup">
<p>
I know as much as I need. My workflow is not to swift but it gets
job done.
</p>
</div>
<span>Responsive Web Designe</span>
<div class="popup">
<p>
I know the principles of Media Querys, flex, grid although I have a
hard time with designe of RWD.
</p>
</div>
<span>Sass</span>
<div class="popup">
<p>Basic syntax knowledge.</p>
</div>
<span>jQuery</span>
<div class="popup">
<p>
Basic syntax knowledge. I try to use vanilla just for lerning sake.
</p>
</div>
<span>Bootstrap4</span>
<div class="popup">
<p>
Basic knowledge of grid system and widgets. As above try I try to
work with MQ, fex/grid for lerning sake.
</p>
</div>
<span>React</span>
<div class="popup">
<p>Can make basic structures and some logic but still lerning.</p>
</div>
<span>Soft Skills</span>
<div class="popup">
<p>I have some really, but I'll let recruiter assess that.</p>
</div>
</section>
<section class="cv_education">
<h3>Education</h3>
<section class="school">
<h4>College</h4>
<p>In 2009 I graduated from VII LO in Białystok.</p>
</section>
<section class="school">
<h4>
Bartłomiej Borowczyk "Od podstaw do pierwszej pracy jako front-end
developer" on Udemy
</h4>
<p>
At the time of writing I've finished 4 out of 6 modules of this
course. Currently I'm in the middle of Node.js module.
</p>
</section>
</section>
</div>
</body>
</html>