-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (45 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Postprintum</title>
<style>
body {
background-color: #000000;
color: #808080;
}
.content {
text-align: center;
}
.logo {
display: inline-block;
border-width: 2px;
border-style: inset;
border-color: #808080;
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-color: rgb(7, 18, 38);
}
a {
color: rgb(42, 115, 123);
text-decoration: none;
}
</style>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-169038023-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-169038023-1');
</script>
</head>
<body>
<div class="content">
<div class="logo">
<p><img src="art/postprintum-logo-500x500.png" width="250" height="250" alt="Postprintum logo"></p>
<p>Coming soon.</p>
<p><a href="https://twitter.com/postprintum">@postprintum</a></p>
</div>
</div>
</body>
</html>