-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (74 loc) · 1.98 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
<!DOCTYPE html>
<html lang="de"
<meta charset="utf-8">
<title>Lutz Althüser — GitHub</title>
<style>
@font-face {
font-family: Roboto;
font-style: normal;
font-weight: 300;
src: url('fonts/roboto-slab.woff2') format('woff2'),
url('fonts/roboto-slab.woff') format('woff');
}
* {
border: 0;
margin: 0;
padding: 0;
box-sizing: border-box;
color: #675741;
font: 14px/28px Roboto, serif;
}
html {
width: 100%;
height: 100%;
text-align: center;
}
body {
top: 50%;
position: relative;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
img {
width: 300px;
height: 300px;
}
h1 {
margin: 16px 0 0;
font-size: 28px;
line-height: 48px;
}
p {
margin: 0 0 12px;
}
a,
span {
margin: 0 6px;
}
a {
color: #994F49;
text-decoration: none;
}
</style>
<body>
<img src="img/LA_logo.svg" alt="Lutz Althüser" itemprop="image" />
<!--
<h1 itemprop="name">
Lutz Althüser
</h1>
<p>
<span>WWU Münster</span>
<span>Fachschaftsrat Physik</span>
<span>Institut für Kernphysik</span>
</p>
-->
<nav>
<a href="mailto:[email protected]" itemprop="sameAs">Mail</a>
<a href="https://github.com/l-althueser" itemprop="sameAs">GitHub</a>
<a href="http://l-althueser.de" itemprop="sameAs">Webseite</a>
<!--<br />-->
<!--<a href="https://Link.link" itemprop="sameAs">Link</a>-->
</nav>
</body>
</html>