-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
35 lines (33 loc) · 1.65 KB
/
about.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
<!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">
<title>Garbage? Blog - About me</title>
<link rel="stylesheet" type="text/css" href="https://cdn.rawgit.com/dreampulse/computer-modern-web-font/master/fonts.css">
<link rel="stylesheet" href="./css/default.css" />
</head>
<body>
<header>
<nav>
<a href="./">Home</a>
<a href="./about.html">About</a>
<!-- enable with more posts <a href="/archive.html">Archive</a> -->
</nav>
</header>
<main role="main">
<h1>About me</h1>
<p>I am <a href="https://openjdk.java.net/census#lkorinth">Leo Korinth</a>; I program stuff. I graduated from the <a href="https://www.kth.se/en">Royal Institute of Technology</a> with a <em>M.Sc. in Engineering, Computer Science and Engineering</em> degree.</p>
<p>I am working for Oracle writing <a href="https://www.fsf.org/about/what-is-free-software">free software</a> and improving <a href="https://en.wikipedia.org/wiki/Garbage_collection_(computer_science)">garbage collection</a> in <a href="https://openjdk.java.net">OpenJDK</a>.</p>
<p><strong>What I write is my opinion and not the opinion of my employer.</strong></p>
<figure>
<img src="./images/about/leo_korinth.jpg" style="width:20.0%" alt /><figcaption>Leo Korinth</figcaption>
</figure>
</main>
<footer>
What I write is my opinion and <bf>not</bf> the opinion of my
employer.
</footer>
</body>
</html>