-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
48 lines (41 loc) · 1005 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Metropolis</title>
<link href="https://fonts.googleapis.com/css?family=Dosis:400,200" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<style>
* {
font-family: 'Dosis', sans-serif;
}
body {
background: #1a1c14;
color: #fffefa;
font-size: 4rem;
}
.title {
padding-top: 200px;
text-align: center;
width: 600px;
margin: 0 auto;
}
.title span {
color: #4a4c34;
}
.title a {
font-size: 2rem;
color: #3a3c34;
text-decoration: none;
}
</style>
</head>
<body>
<div class="title">
Metropolis<span>.black</span>
<br>
<a href="https://github.com/turbomaze/metropolis">Github.</a>
</div>
</body>
</html>