-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (65 loc) · 1.47 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>six78</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300&family=Roboto:wght@500&family=Source+Sans+3:wght@300&display=swap"
rel="stylesheet">
<style>
html {
width: 100vw;
height: 100vh;
font-family: 'JetBrains Mono', monospace;
}
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
a {
color: #d93711 !important;
text-decoration: none !important;
}
p {
font-size: 2em;
opacity: 0;
transition: opacity 1s ease-in-out;
}
p.visible {
opacity: 1;
}
@media (max-width: 500px) {
p {
font-size: 1em;
}
}
</style>
</head>
<body>
<p id="main">
<span>0</span>
<span>1</span>
<span>2</span>
<span>3</span>
<span>4</span>
<span>5</span>
<a href="https://band.link/six78planet9">
<span>six</span>
<span>7</span>
<span>8</span>
</a>
<span>9</span>
</p>
</body>
<script>
document.addEventListener("DOMContentLoaded", function (event) {
document.getElementById('main').classList.add('visible');
});
</script>
</html>