-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
56 lines (54 loc) · 1.23 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
55
56
<!DOCTYPE html>
<html>
<head>
<title>xyfir</title>
<meta
name="viewport"
content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no"
/>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="xyfir network" />
<link rel="shortcut icon" type="image/png" href="/icon.png" />
<style>
section {
padding: 1em 0;
}
footer {
font-size: small;
margin: 2em 0;
}
body {
background-color: #000;
font-family: monospace;
text-align: center;
max-width: 20em;
font-size: 150%;
padding: 0 2em;
margin: auto;
color: #fff;
}
main {
justify-content: center;
flex-direction: column;
align-items: center;
min-height: 100vh;
display: flex;
}
h1 {
font-size: 200%;
margin: 0;
}
</style>
</head>
<body>
<main>
<section>
<h1>xyfir</h1>
</section>
<footer>© 2015-<span id="year"></span></footer>
</main>
<script>
document.getElementById("year").innerHTML = new Date().getFullYear();
</script>
</body>
</html>