Files
website/index.html
2017-01-11 19:17:29 +01:00

63 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<style>
@font-face {
font-family: 'charterregular';
src: url('charter_regular-webfont.eot');
src: url('charter_regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
body {
font-family: 'charterregular', Georgia, serif;
width: 100vw;
height: 100vh;
margin: 0;
}
.aside {
float: left;
width: 200px;
margin-left: 10vw;
}
.aside h1 {
font-size: 28px;
padding: 1em;
font-weight: 500;
}
.aside ul {
list-style-type: none;
}
.aside ul li {
padding-bottom: 0.4em;
}
a {
color: #444;
text-decoration: none;
font-size: 17px;
}
.main {
width: calc(100% - 200px);
padding: 2em;
}
</style>
<title>Veit Heller</title>
</head>
<body>
<div class="aside">
<h1>Veit Heller</h1>
<ul>
<li><a href="https://veitheller.de/static/resume.pdf">My Resume</a></li>
<li><a href="mailto:veit@veitheller.de">Contact me</a></li>
<li><a href="https://github.com/hellerve">Github</a><li>
</ul>
</div>
<div class="main">
<p>G'day, I'm Veit.</p>
<p>
I'm a software engineer at Port Zero based in Berlin.
I do a lot of open source work.
</p>
</body>
</html>