-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
54 lines (51 loc) · 1.14 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
<html>
<head>
<title>Speak, Friend, and enter.</title>
<script type="text/javascript" src="scripts/egg.min.js"></script>
<script type="text/javascript" src="scripts/countdown.js"></script>
</head>
<body>
<script type="text/javascript">
function unwrap(c){
return String.fromCharCode(100+c);
}
var ar = [9, 1, 8, 11, 10];
var fi = ar.map(unwrap).join(",");
var gatekeeper = new Egg();
gatekeeper.AddCode(fi, function(){
alert(";)");
}).Listen();
</script>
<style type="text/css">
div.gate {
background-color: black;
background-image: url("static/gate.jpg");
background-repeat: no-repeat;
background-position: center;
height: 100%;
position: relative;
z-index: -1;
}
#countdown {
color: white;
z-index: 1;
position: absolute;
left: 40%;
top: 92%;
text-align: center;
font-family: "wizard";
font-size: x-large;
}
@font-face {
font-family: "wizard";
src: url("http://se.cretfi.re/RINGM___.TTF");
}
</style>
<script type="text/javascript">
timer = setInterval(showRemaining, 1000);
</script>
<div class="gate">
<div id="countdown"></div>
</div>
</body>
</html>