-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (109 loc) · 3.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Welcome to my portfolio site!">
<link rel="shortcut icon" type="image/png" href="/portfolio/assets/favicon.png"/>
<title>Robert Koenig</title>
<!-- Font -->
<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=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-D17ZJTH0CV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-D17ZJTH0CV');
</script>
</head>
<style>
body {
font-family: 'Courier Prime', monospace;
font-size: 14px;
font-style: italic;
width: 320px;
}
h1 {
all: unset;
font-size: 14px;
font-weight: 700;
margin: 0;
}
h2 {
all: unset;
font-size: 14px;
font-weight: 400;
margin: 0;
}
a {
color: rgb(2 132 199);
text-decoration: none;
}
a:hover {
color: rgb(3 105 161);
}
.gap {
height: 2em;
}
.small-gap {
height: 1em;
}
.no-dots {
list-style: none;
}
.small-text {
font-size: 12px;
}
</style>
<body>
-------------------------------------
--- <h1>Robert Koenig</h1> -------------------
-------------------------------------
-------------------------------------
--------------- <em>Software Engineer</em> ---
-------------------------------------
<div class="small-gap"></div>
<div class="gap"></div>
<h2>Here is my <strong><a href="cv.pdf">CV</a></strong></li></h2>
<div class="gap"></div>
<h2>Selected Portfolio</h2>
<ul>
<li>Crimson</li>
<ul class="no-dots">
<li><a href="https://crimson-law.vercel.app/" target="_blank">site</a></li>
<li><a href="https://youtu.be/0jep8bsuILc?si=hTWpquhS_SEWrRVW" target="_blank">demo</a></li>
<li><a href="https://docs.google.com/spreadsheets/d/1HzK5zpJ9gHD0YkapKyjTJxFau5ACsWbEuA4IeQlOt1o/edit?usp=sharing" target="_blank">product research</a></li>
</ul>
<div class="small-gap"></div>
<li>AI Code Review</li>
<ul class="no-dots">
<li><a href="https://gitfront.io/r/robertpkoenig/yQGcR37JshKE/pr-check/" target="_blank">code</a></li>
</ul>
<div class="small-gap"></div>
<li>Ochem</li>
<ul class="no-dots">
<li><a href="https://ochem.vercel.app/" target="_blank">site</a></li>
<li><a href="https://github.com/robertpkoenig/ochem" target="_blank">code</a></li>
</ul>
<div class="small-gap"></div>
<li>MUSICBOX</li>
<ul class="no-dots">
<li><a href="https://robertpkoenig.github.io/musicbox/" target="_blank">site</a></li>
<li><a href="https://github.com/robertpkoenig/robertpkoenig.github.io/tree/master/musicbox" target="_blank">code</a></li>
</ul>
<div class="small-gap"></div>
</ul>
<div class="small-gap"></div>
<h2>Contact</h2>
<ul class="no-dots">
<li>robertpkoenig@gmail.com</li>
<li>+44 (0) 7419 846 984 (UK)</li>
</ul>
<div class="small-gap"></div>
<p class="small-text">Design inspired by <a href="https://www.vulfpeck.com/" target="_blank">vulfpeck</a></p>
</body>
</html>