This commit is contained in:
hellerve
2017-01-11 19:11:24 +01:00
commit 32690aec6f
3 changed files with 61 additions and 0 deletions

BIN
charter_regular-webfont.eot Normal file

Binary file not shown.

Binary file not shown.

61
index.html Normal file
View File

@@ -0,0 +1,61 @@
<!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>
</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>