-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·83 lines (76 loc) · 2.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Jan Dillmann | Mobile- and Web-Development</title>
<meta name="description" content="Mobile and Web Development"/>
<meta name="keywords" content="Design,UI,UX,Print,Web,iOS,iPhone,Android,App,Mac,Development"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
}
body {
height: 100vh;
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
line-height: 1.3;
padding: 1.3rem;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a, a:visited {
color: darkblue;
text-decoration: none;
}
a:active, a:focus, a:hover {
text-decoration: underline;
}
.content {
max-width: 30rem;
}
.title {
font-size: 3rem;
margin-bottom: 1rem;
}
.subtitle {
font-size: 1.8rem;
font-weight: normal;
margin-bottom: 1.3rem;
}
.links {
list-style: none;
display: flex;
align-items: stretch;
justify-content: space-between;
font-size: 1.3rem;
}
</style>
</head>
<body>
<div class="content">
<h1 class="title">👨🏼💻 Jan Dillmann</h1>
<h2 class="subtitle">Mobile- and Web-Developer from Cologne, Germany.</h2>
<ul class="links">
<li><a href="mailto:[email protected]" title="E-Mail">E-Mail</a></li>
<li><a href="http://www.xing.com/profile/Jan_Dillmann"title="Xing">Xing</a></li>
<li><a href="http://www.linkedin.com/in/jandillmann" title="LinkedIn">LinkedIn</a></li>
<li><a href="http://github.com/jandillmann" title="GitHub">GitHub</a></li>
</ul>
</div>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-35452797-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-35452797-1');
</script>
</body>
</html>