This repository has been archived by the owner on Apr 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv.html
280 lines (240 loc) · 8.37 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
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
<!DOCTYPE html>
<html>
<head>
<title>Dawid Olko - CV</title>
<link rel="icon" type="image/png" href="logo.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Teko:wght@300;400&family=Victor+Mono:ital,wght@0,300;1,300&display=swap" rel="stylesheet">
<style>
body {
background-color: #222;
font-family: 'Teko', sans-serif;
font-family: 'Victor Mono', monospace;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
margin: 0;
padding: 0;
}
.cv-container {
width: 80%;
max-width: 800px;
margin-top: 20px;
background-color: #fff;
padding: 20px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.cv-header {
text-align: center;
margin-bottom: 20px;
}
.cv-header h1,
.cv-header h2 {
margin: 0;
}
.cv-header {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.cv-header-info {
text-align: left;
}
/* Dodane style dla cv-contact */
.cv-contact {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.cv-contact ul {
list-style-type: none;
padding: 0;
margin: 0;
}
.cv-contact ul li {
margin-bottom: 10px;
}
.cv-section {
margin-bottom: 20px;
}
.cv-section h2 {
margin-bottom: 10px;
}
.cv-section ul {
list-style-type: none;
padding: 0;
margin: 0;
}
.cv-section ul li {
margin-bottom: 5px;
}
.cv-section ul li:before {
content: "⦁";
margin-right: 5px;
}
.cv-additional-info {
margin-bottom: 20px;
}
.cv-additional-info ul {
list-style-type: none;
padding: 0;
margin: 0;
}
.cv-additional-info ul li {
margin-bottom: 5px;
}
.cv-skills {
display: flex;
justify-content: space-around;
padding: 20px;
background-color: #eee;
}
.cv-skills img {
width: 80px;
height: 80px;
transition: transform .2s;
}
.cv-skills img:hover {
transform: scale(1.2);
}
.cv-footer {
background-color: #222;
text-align: center;
padding: 10px;
position: relative;
width: 100%;
margin-top: 20px;
color: #fff; /* Dodany styl dla koloru tekstu stopki */
}
.cv-social-icons {
display: flex;
justify-content: center;
margin-top: 20px;
}
.cv-social-icons a {
margin: 0 10px;
color: #333;
}
.cv-social-icons a:hover {
color: #666;
}
/* Dodane style dla cv-download */
.cv-download {
position: absolute;
top: 20px;
right: 20px;
display: flex;
align-items: center;
background-color: #fff;
color: #333;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s, color 0.3s;
}
.cv-download:hover {
background-color: #333;
color: #fff;
}
.cv-download i {
margin-right: 5px;
}
</style>
</head>
<body>
<div class="cv-container">
<!-- Dodany kod dla cv-download -->
<a class="cv-download" href="CVV Dawid Olko.pdf" title="CV Download">
<i class="fas fa-arrow-circle-down"></i> CV DOWNLOAD
</a>
<!-- Koniec dodanego kodu -->
<div class="cv-header">
<h1>Classic Curriculum Vitae</h1>
<img src="https://raw.githubusercontent.com/dawidolko/dawidolko.github.io/983f7dc51164ee187a773379fc372a1c4a5893cf/Portret.jpg" alt="Moje zdjęcie" width="200" height="200">
</div>
<div class="cv-contact">
<ul>
<h2>Dawid Olko</h2>
<li>Phone number: +48 660 537 403</li>
<li>E-mail: [email protected]</li>
</ul>
</div>
<div class="cv-section">
<h2>Personal information</h2>
<ul>
<li>Date of birth: April 20, 2002</li>
<li>Address: Obojna 206, Postal code: Zaleszany 37-415</li>
</ul>
</div>
<div class="cv-section">
<h2>Education</h2>
<ul>
<li>2022 - present - University of Rzeszów (UR) major: Computer Science 1st degree</li>
<li>2018 - 2022 - Regional Center for Vocational Education in Nisko profile: Electrical Technician</li>
<li>2015 - 2018 - Catholic Gimnazjum im. Blessed Fr. J. Popieluszko in Stalowa Wola</li>
<li>2009 - 2015 - Public Primary School no. 11 them Gray Ranks</li>
</ul>
</div>
<div class="cv-section">
<h2>Professional experience</h2>
<ul>
<li>July 1, 2019 - August 1, 2019 - Internship at PGE (Polish Energy Group)</li>
<li>01.03.2021 - 01.04.2021 - Apprenticeship at HSW (Huta Stalowa Wola)</li>
</ul>
</div>
<div class="cv-section">
<h2>Additional information</h2>
<ul>
<li>Driving license category B</li>
<li>Auto detailing course</li>
<li>Permissions of the Association of Polish Electrical Engineers "SEP" cat. E up to 1 kV</li>
<li>Computer skills at a high level</li>
<li>Health book</li>
</ul>
</div>
<div class="cv-section">
<h2>Personal advantages</h2>
<ul>
<li>Conscientiousness</li>
<li>Accuracy</li>
<li>Honesty</li>
<li>Industriousness</li>
<li>Speed</li>
</ul>
</div>
<div class="cv-section">
<h2>Interests</h2>
<ul>
<li>Sports</li>
<li>Automotive</li>
<li>Electronics</li>
<li>IT</li>
<li>Video editing</li>
</ul>
</div>
<div class="cv-additional-info">
<p>I consent to the processing of my personal data for the purposes of the process
recruitment in accordance with Regulation (EU) 2016/679 of the European Parliament and of the Council of April 27
2016
r. on the protection of individuals with regard to the processing of personal data and on the free
the flow of such data and repealing Directive 95/46/EC (GDPR).</p>
</div>
<div class="cv-footer">
<p>© 2023 Dawid Olko - All rights reserved | email: [email protected]</p>
</div>
<div class="cv-social-icons">
<a href="https://www.linkedin.com/in/dawidolko" title="LinkedIn"><i class="fab fa-linkedin fa-2x"></i></a>
<a href="https://www.instagram.com/dawid_olko" title="Instagram"><i class="fab fa-instagram fa-2x"></i></a>
<a href="https://www.facebook.com/dawid.0lko" title="Facebook"><i class="fab fa-facebook fa-2x"></i></a>
<a href="https://www.youtube.com/c/dawio" title="YouTube"><i class="fab fa-youtube fa-2x"></i></a>
<a href="https://www.github.com/dawidolko" title="Github"><i class="fab fa-github fa-2x"></i></a>
<a href="https://www.twitter.com/dawidolko" title="Twitter"><i class="fab fa-twitter fa-2x"></i></a>
</div>
</div>
</body>
</html>