-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathimprint.html
More file actions
45 lines (45 loc) · 1.01 KB
/
imprint.html
File metadata and controls
45 lines (45 loc) · 1.01 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Imprint | Veit's Blog</title>
<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;
font-display: swap;
}
.content {
max-width: 500px;
margin-left: 10vw;
font-size: 20px;
font-family: 'charterregular';
}
h1 {
font-weight: 500;
font-size: 30px;
}
a {
color: #222;
text-decoration: none;
border-bottom: 2px solid #d6dde3;
}
</style>
</head>
<body>
<div class="content">
<h1>Imprint</h1>
<p>Veit Heller<br/>
Moltkestr 5<br/>
90154 Erlangen<br/>
Germany
</p>
<p>Don't know what this is? This is a necessity dictated by German law.</p>
<hr/>
<a href="mailto:veit@veitheller.de">Shoot me an e-mail</a><br/>
<a href="/">Head back home</a>
</div>
</body>
</html>