-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenter.html
62 lines (59 loc) · 1.7 KB
/
enter.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="favicon.png" type="image/x-icon">
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home — SEQTA Learn</title>
<style>
body {
background-color: black;
color: white;
font-family: "Cascadia Code", "Courier New", Courier, monospace;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
opacity: 0;
transition: opacity 5s;
}
body {
background-image: url('background.gif');
background-size: 200px 200px;
background-repeat: repeat;
background-attachment: fixed;
margin: 0;
padding: 0;
}
p {
margin: 0;
}
a {
color: white;
text-decoration: none;
font-size: 1.2em;
}
a:hover {
color: purple;
}
</style>
<script>
document.addEventListener('DOMContentLoaded', function() {
document.body.style.opacity = '1';
});
</script>
</head>
<body>
<p>enjoy your stay.</p>
<a href="asteroid.html">asteroid</a>
<a href="hypertabs.html">hypertabs</a>
<a href="light.html">light</a>
<a href="lud.html">ludicrous</a>
<a href="shadow.html">rammerhead</a>
</body>
</html>