-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
134 lines (112 loc) · 4.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Stefan KP</title>
<meta name="description" content="I've been working as a Software Engineer since 2014, with a focus on the web. I enjoy writing Javascript and Ruby." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.stefankp.com/" />
<meta property="og:title" content="Stefan KP" />
<meta property="og:description" content="I've been working as a Software Engineer since 2014, with a focus on the web. I enjoy writing Javascript and Ruby." />
<meta property="og:image" content="https://www.stefankp.com/stefankp.jpeg" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://www.stefankp.com/" />
<meta name="twitter:title" content="Stefan KP" />
<meta name="twitter:description" content="I've been working as a Software Engineer since 2014, with a focus on the web. I enjoy writing Javascript and Ruby." />
<meta property="twitter:image" content="https://www.stefankp.com/stefankp.jpeg" />
<link rel="apple-touch-icon" sizes="180x180" href="./apple-touch-icon.png?v=2" />
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png?v=2" />
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png?v=2" />
<link rel="manifest" href="./site.webmanifest?v=2" />
<link rel="preload" href="./stefankp.jpeg" as="image" />
<style>
:root {
--font-family: "system-ui", -apple-system, BlinkMacSystemFont,
"Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
"Droid Sans", "Open Sans", "Noto Sans", "Helvetica Neue", "Arial",
sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
"Noto Color Emoji";
--light: #fafafa;
--dark: #2c2c2c;
--blue: #0d66d0;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 20px;
}
body {
background-color: var(--light);
color: var(--dark);
font-family: var(--font-family);
font-size: 1rem;
}
main {
display: flex;
flex-direction: column;
justify-content: center;
}
article {
margin: 0 auto;
max-width: 56ch;
padding: 2rem 1rem;
}
article > * + * {
margin-top: 1rem;
}
footer {
font-size: 0.75rem;
padding: 2rem 1rem;
text-align: center;
}
footer a {
display: inline-block;
margin: 0 0.5rem;
}
img {
display: block;
height: auto;
margin: 0 auto 2rem;
max-width: 100%;
}
p {
line-height: 1.5;
}
a {
color: var(--blue);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
@media (min-width: 768px) {
html {
font-size: 24px;
}
}
</style>
</head>
<body>
<main>
<article>
<img src="./stefankp.jpeg" alt="Stefan sitting in a park with a GitHub cap on" width="1024" />
<h1>Hi, I'm <strong>Stefan</strong></h1>
<p>
I've been working as a <strong>Software Engineer</strong> since 2014, with a focus on the web. I enjoy writing Javascript and Ruby. I've worked for companies like <a href="https://www.lufthansa.com">Lufthansa</a>, <a href="https://www.edenspiekermann.com">Edenspiekermann</a>, <a href="https://www.mckinsey.com">McKinsey</a> and <a href="https://www.codeandco.com">Code & Co</a>.
</p>
<p>
Today I am part of <a href="https://www.github.com">GitHub</a>, the home for all developers and the world's leading AI-powered developer platform.
</p>
</article>
</main>
<footer>
<a href="https://www.github.com/stefankp">GitHub</a>
<a href="https://www.linkedin.com/in/stefankp">LinkedIn</a>
<a href="https://www.twitter.com/stefankp">Twitter</a>
</footer>
</body>
</html>