-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 958 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="shortcut icon" href="icon.png">
<title>StepDub: wait for it</title>
<style>
@font-face {
font-family: 'Racing Sans One';
font-style: normal;
font-weight: 400;
src: url(RacingSansOne-Regular.woff) format('woff'), url(RacingSansOne-Regular.ttf) format('opentype');
}
html {
display: table;
height: 100%;
width: 100%;
background-color: black;
}
body {
display: table-cell;
text-align: center;
vertical-align: middle;
color: white;
font-family: Racing Sans One, Segoe UI, DejaVu Sans, Tahoma, Cantarell, sans-serif;
font-size: 3em;
}
div {position: relative;}
img{vertical-align: middle}
#appname{position: relative; top: 0.5em}
</style>
</head>
<body>
<div>
<img src="icon.png">
<img src="headline.svg" id="appname" alt="StepDub">
</div>
<div>
Dropping Soon
</div>
</body>
</html>