-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (47 loc) · 824 Bytes
/
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
<style>
body {
background: #6ab47b;
border-color: #599a68;
}
h1 {
color: #fff;
font-family: 'Changa One', sans-serif;
margin: 15px 0;
font-size: 7.75em;
font-weight: normal;
line-height: 0.8em;
}
h2, h2 a, h2 a:link {
color: #fff;
font-family: 'Open Sans', sans-serif;
font-size: 1.75em;
margin: -5px 0 0;
font-weight: normal;
}
h2 a:visited { color: #fff; }
h2 a:hover, h2 a:active { color: #fff; }
}
div {
width: 240px;
margin: 20px;
}
.flex-center {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 500px;
overflow: auto;
}
.flex-center p {
margin: 0;
padding: 20px;
}
</style>
<body>
<div class="flex-center">
<h1>Duncan Betts</h1>
<br>
<h2><a href="mailto:[email protected]">[email protected]</a></h2>
</div>
</body>