-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathindex.html
More file actions
401 lines (393 loc) · 15.9 KB
/
index.html
File metadata and controls
401 lines (393 loc) · 15.9 KB
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./style.css" type="text/css" />
<title>Danny Dev | CV</title>
</head>
<body class="font-sans antialiased w-full">
<div class="container mx-auto max-w-screen-xl">
<main
id="wrapper"
class="flex flex-col sm:flex-row-reverse sm:m-12 shadow-2xl"
>
<div
id="sidebar"
class="w-full sm:max-w-sm p-8 bg-gradient-to-b from-indigo-300 via-green-300 to-white"
>
<div class="px-2 mb-12">
<img
src="./assets/jack-finnigan-rriAI0nhcbc-unsplash.jpg"
alt="Profile Picture"
class="rounded-full w-48 mx-auto mb-2"
/>
<h1 class="text-center text-3xl font-semibold mb-2">Danny Dev</h1>
<h2 class="text-center text-xl font-light">Fullstack Developer</h2>
</div>
<div class="font-light text-lg px-2 mb-12">
<h2 class="text-xl font-semibold mb-4">Contact</h2>
<div class="flex items-center my-3">
<img
src="./assets/mail-outline.svg"
class="inline w-6 mr-4"
alt="Mail icon"
/>
<a href="mailto:">dannydev@example.com</a>
</div>
<div class="flex items-center my-3">
<img
src="./assets/call-outline.svg"
class="inline w-6 mr-4"
alt="Phone icon"
/>
<a href="tel:">0123 456 789</a>
</div>
<div class="flex items-center my-3">
<img
src="./assets/home-outline.svg"
class="inline w-6 pb-1 mr-4"
alt="House icon"
/>
<div>
<p>Dev Street 13</p>
<p>Dev Town</p>
</div>
</div>
</div>
<div class="font-light text-lg px-2 mb-12">
<h2 class="text-xl font-semibold mb-4">Personal</h2>
<div class="flex items-center my-3">
<img
src="./assets/egg-outline.svg"
class="inline w-6 mr-4"
alt="Egg Icon"
/>
<span>Born on 27th of May 2000</span>
</div>
<div class="flex items-center my-3">
<img
src="./assets/people-outline.svg"
class="inline w-6 mr-4"
alt="Two Persons Icon"
/>
<span>Married, two kids</span>
</div>
</div>
<div class="font-light text-lg px-2 mb-12">
<h2 class="text-xl font-semibold mb-4">On the Web</h2>
<div class="flex items-center my-3">
<img
src="./assets/logo-github.svg"
class="inline w-6 mr-4"
alt="GitHub Logo"
/>
<a href="#" target="_blank" rel="noopener noreferrer">GitHub</a>
</div>
<div class="flex items-center my-3">
<img
src="./assets/logo-stackoverflow.svg"
class="inline w-6 mr-4"
alt="Stack Overflow Logo"
/>
<a href="#" target="_blank" rel="noopener noreferrer"
>StackOverflow</a
>
</div>
<div class="flex items-center my-3">
<img
src="./assets/logo-linkedin.svg"
class="inline w-6 mr-4"
alt="LinkedIn Logo"
/>
<a href="#" target="_blank" rel="noopener noreferrer">LinkedIn</a>
</div>
<div class="flex items-center my-3">
<img
src="./assets/logo-twitter.svg"
class="inline w-6 mr-4"
alt="Twitter Logo"
/>
<a href="#" target="_blank" rel="noopener noreferrer"
>@twitter_handle</a
>
</div>
<div class="flex items-center my-3">
<img
src="./assets/logo-codepen.svg"
class="inline w-6 mr-4"
alt="CodePen Logo"
/>
<a href="#" target="_blank" rel="noopener noreferrer">CodePen</a>
</div>
<div class="flex items-center my-3">
<img
src="./assets/globe-outline.svg"
class="inline w-6 mr-4"
alt="Globe icon"
/>
<a href="#" target="_blank" rel="noopener noreferrer"
>Portfolio</a
>
</div>
</div>
<div class="font-light text-lg px-2 mb-12">
<h2 class="text-xl font-semibold mb-4">Skills & Tools</h2>
<ul class="list-none">
<li>
<label for="js-skill">JavaScript</label>
<progress id="js-skill" max="100" value="70"></progress>
</li>
<li>
<label for="vue-skill">Vue / Vuex</label>
<progress id="vue-skill" max="100" value="80"></progress>
</li>
<li>
<label for="react-skill">React</label>
<progress id="react-skill" max="100" value="66"></progress>
</li>
<li>
<label for="nextjs-skill">Next.js</label>
<progress id="nextjs-skill" max="100" value="72"></progress>
</li>
<li>
<label for="eleventy-skill">Eleventy</label>
<progress id="eleventy-skill" max="100" value="66"></progress>
</li>
<li>
<label for="node-skill">Node / Express.js</label>
<progress id="node-skill" max="100" value="45"></progress>
</li>
<li>
<label for="css-skill">SCSS</label>
<progress id="css-skill" max="100" value="75"></progress>
</li>
<li>
<label for="design-skill">Inkscape / Figma</label>
<progress id="design-skill" max="100" value="62"></progress>
</li>
<li>
<div>Infrastructure / Hosting / DB</div>
<p class="leading-8">
<span class="rounded-xl bg-gray-300 px-3">AWS</span>
<span class="rounded-xl bg-gray-300 px-3">Vercel</span>
<span class="rounded-xl bg-gray-300 px-3">Heroku</span>
<span class="rounded-xl bg-gray-300 px-3">DynamoDB</span>
<span class="rounded-xl bg-gray-300 px-3">MongoDB</span>
<span class="rounded-xl bg-gray-300 px-3">SQLite</span>
</p>
</li>
</ul>
</div>
<div class="font-light text-lg px-2 mb-12">
<h2 class="text-xl font-semibold mb-4">Education</h2>
<h3 class="font-semibold">BSc Computer Science</h3>
<p>2016 - 2019 University of London</p>
</div>
<div class="font-light text-lg px-2 mb-12">
<h2 class="text-xl font-semibold mb-4">Languages</h2>
<h3 class="font-semibold">German</h3>
<p>Native</p>
<h3 class="font-semibold">English</h3>
<p>Fluent</p>
</div>
</div>
<div class="content w-full p-12">
<div id="profile" class="prose">
<h2 class="section-headline">Profile</h2>
<p>
I'm a self-taught web developer focusing on the core web
fundamentals - HTML, CSS and JS. I'm experienced in frontend
frameworks like Vue and React and static site generators like
Next.js and Eleventy. I write SCSS or use CSS frameworks like
TailwindCSS, Bootstrap or Bulma to speed up styling of my
projects.
</p>
<p>
I am highly motivated in expanding my horizons day by day for
better performance, testing and user experience.
</p>
</div>
<hr class="mt-8 mb-12" />
<div id="experience" class="prose">
<h2 class="section-headline">Experience</h2>
<div>
<h3>Example Inc</h3>
<section class="mb-6">
<div class="lg:inline-block lg:w-3/12 lg:align-top italic mb-2">
Jul. 2019:
</div>
<div class="lg:inline-block lg:w-8/12 w-full">
Fullstack Developer
</div>
</section>
<section class="mb-6">
<div class="lg:inline-block lg:w-3/12 lg:align-top italic mb-2">
Task:
</div>
<div class="lg:inline-block lg:w-8/12 w-full">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed
do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Ut enim ad minim veniam, quis nostrud exercitation ullamco
laboris nisi ut aliquip ex ea commodo consequat.
</div>
</section>
<section class="mb-6">
<div class="lg:inline-block lg:w-3/12 lg:align-top italic mb-2">
Description:
</div>
<div class="lg:inline-block lg:w-8/12 w-full">
Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint
occaecat cupidatat non proident, sunt in culpa qui officia
deserunt mollit anim id est laborum.
</div>
</section>
<section class="mb-6">
<div class="lg:inline-block lg:w-3/12 lg:align-top italic mb-2">
Tools:
</div>
<div class="lg:inline-block lg:w-8/12 w-full">
<span class="rounded-xl bg-gray-300 px-3">Vue</span>
<span class="rounded-xl bg-gray-300 px-3">Vuex</span>
<span class="rounded-xl bg-gray-300 px-3">Bootstrap</span>
<span class="rounded-xl bg-gray-300 px-3">Docker</span>
<span class="rounded-xl bg-gray-300 px-3">Git</span>
<span class="rounded-xl bg-gray-300 px-3">Bitbucket</span>
<span class="rounded-xl bg-gray-300 px-3">Jira</span>
</div>
</section>
</div>
</div>
<hr class="mt-8 mb-12" />
<div id="projects" class="prose">
<h2 class="section-headline">Projects</h2>
<div class="mb-16">
<h3 id="chrisko-headline">christiankozalla.com</h3>
<section class="mb-6">
<div class="lg:inline-block lg:w-3/12 lg:align-top italic mb-2">
Personal blog:
</div>
<div class="lg:inline-block lg:w-8/12 w-full">
My blog is the center of my online presence. Here, I share
posts about what I've learnt, tutorials and my thoughts on web
development in general.
</div>
</section>
<section class="mb-6">
<div class="lg:inline-block lg:w-3/12 lg:align-top italic mb-2">
Deployed to:
</div>
<div class="lg:inline-block lg:w-8/12 w-full">
<a
href="https://christiankozalla.com"
target="_blank"
rel="noopener noreferrer"
>christiankozalla.com</a
>
</div>
</section>
<section class="mb-6">
<div class="lg:inline-block lg:w-3/12 lg:align-top italic mb-2">
Code on:
</div>
<div class="lg:inline-block lg:w-8/12 w-full">
<a
href="https://github.com/christiankozalla/blog"
target="_blank"
rel="noopener noreferrer"
>github.com/christiankozalla/blog</a
>
</div>
</section>
<section class="mb-6">
<div class="lg:inline-block lg:w-3/12 lg:align-top italic mb-2">
Features:
</div>
<div class="lg:inline-block lg:w-8/12 w-full">
<ul>
<li>Static generation</li>
<li>Blog content written in Markdown</li>
<li>Counter for pageviews and likes</li>
<li>My latest tweets</li>
<li>Featured images made with Inkscape</li>
<li>SEO</li>
</ul>
</div>
</section>
<section class="mb-6">
<div class="lg:inline-block lg:w-3/12 lg:align-top italic mb-2">
Built with:
</div>
<div class="lg:inline-block lg:w-8/12 w-full">
<span class="rounded-xl bg-gray-300 px-3">Next.js</span>
<span class="rounded-xl bg-gray-300 px-3">CSS</span>
<span class="rounded-xl bg-gray-300 px-3">styled-jsx</span>
<span class="rounded-xl bg-gray-300 px-3">DynamoDB</span>
<span class="rounded-xl bg-gray-300 px-3">Vercel</span>
</div>
</section>
</div>
</div>
<hr class="mt-8 mb-12" />
<div id="projects" class="prose">
<h2 class="section-headline">Expand my skills</h2>
<div class="mb-16">
<h4 id="expand-knowledge-headline">
I'd like to expand my skills and knowledge in several fields
</h4>
<ul>
<li>TypeScript</li>
<li>Testing, e.g. with Mocha, Chai, Jest</li>
<li>Web Components, e.g. with StencilJS, LitElement</li>
<li>Prototyping and Wireframing, e.g. with Figma, Adobe XD</li>
<li>Scalable Vector Graphics</li>
<li>Databases</li>
<li>Mobile development</li>
<li>
Backend development, e.g. learn additional language like Go,
Python, PHP, Ruby, Java, Rust
</li>
</ul>
</div>
</div>
</div>
</main>
</div>
<footer
class="mt-12 text-center flex justify-center flex-col md:flex-row mx-12"
>
<a
href="https://christiankozalla.com"
class="text-sm px-4 py-2 m-2 text-gray-600 border-gray-400 border-2 rounded flex-shrink-0"
>Made with ❤️ by Chrisko</a
>
<a
href="https://tailwindcss.com/"
class="text-sm px-4 py-2 m-2 text-gray-600 border-gray-400 border-2 rounded flex-shrink-0"
>TailwindCSS</a
>
<a
href="https://vitejs.dev/"
class="text-sm px-4 py-2 m-2 text-gray-600 border-gray-400 border-2 rounded flex-shrink-0"
>Vite</a
>
<a
href="https://github.com/L33T-KR3W/push-dir"
class="text-sm px-4 py-2 m-2 text-gray-600 border-gray-400 border-2 rounded flex-shrink-0"
>Push Dir</a
>
<a
href="https://ionicons.com/"
class="text-sm px-4 py-2 m-2 text-gray-600 border-gray-400 border-2 rounded flex-shrink-0"
>Ionicons</a
>
<a
href="https://unsplash.com/@jackofallstreets?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText"
class="text-sm px-4 py-2 m-2 text-gray-600 border-gray-400 border-2 rounded flex-shrink-0"
>Photo by Jack Finnigan</a
>
</footer>
</body>
</html>