-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (47 loc) · 1.19 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
<html>
<head>
<title>Bounty Hour</title>
<style>
body {
background: black;
margin: 0;
padding: 0;
}
#bottom-right {
position: absolute;
right: 20px;
bottom: 20px;
}
#centred {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
height: 100vh;
height: 100svh;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
</style>
</head>
<body>
<div id="bottom-right">
<h1>
<a href="mailto:[email protected]" rel="noreferrer">✉️</a>
</h1>
</div>
<div id="centred">
<img src="logo_transparent.png" height="600" width="600" />
</div>
</body>
</html>