-
Notifications
You must be signed in to change notification settings - Fork 0
/
done.html
53 lines (53 loc) · 1.14 KB
/
done.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>TOP SECRET</title>
<link href="https://fonts.googleapis.com/css?family=VT323" rel="stylesheet">
</head>
<body>
<marquee scrolldelay="10" scrollamount="100" id="warning">WELCOME HACKER</marquee>
<style>
:root {
--green: green;
}
* {
background: black;
font-family: VT323;
}
body, input {
font-size: 5rem;
}
input {
border: 3px solid var(--green);
background: black;
width: 600px;
height: 50px;
color: white;
padding: 20px;
margin: 10px 0;
}
#warning {
color: var(--green);
font-size: 10rem;
margin-top: 10rem;
margin-bottom: 4rem;
}
#flex-fucker {
display: flex;
flex-direction: column;
align-items: center;
}
</style>
<script>
let i = true
setInterval(() => {
document.querySelector('#warning').style.color = i ? 'red' : 'green'
i = !i
}, 100)
setTimeout(() => {
window.location.href = "mail.html";
}, 2000)
</script>
</body>
</html>