-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkonami.html
More file actions
70 lines (53 loc) · 1.79 KB
/
konami.html
File metadata and controls
70 lines (53 loc) · 1.79 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Konami Code</title>
<!------------ FONT -------------------->
<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=VT323&display=swap" rel="stylesheet">
<!-------- CSS ----------------->
<link rel="stylesheet" href="./css/stylesheet.css">
<link rel="stylesheet" href="./css/konami.css"
</head>
<body>
<div class="page-wrapper overlay crt">
<audio id="lost">
<source src="sounds/death.mp3" type="audio/mpeg">
</audio>
<audio id="won">
<source src="sounds/area-clear.mp3" type="audio/mpeg">
</audio>
<div class="container">
<div class="row">
<div class="column">
<div id="title">Konami Code</div>
<div class="waviy">
<span style="--i:1">C</span>
<span style="--i:2">H</span>
<span style="--i:3">E</span>
<span style="--i:4">C</span>
<span style="--i:5">K</span>
<span style="--i:6">I</span>
<span style="--i:7">N</span>
<span style="--i:8">G</span>
<span style="--i:9">.</span>
<span style="--i:10">.</span>
<span style="--i:11">.</span>
</div>
<div class="reset">INCORRECT</div>
<div class="reset">CODE RESET</div>
<div class="reset">START CODE OVER</div>
<div class="success">SUCCESS</div>
<div class="success">PRESS 'ESC' TO START OVER</div>
<div class="code">ENTER THE CODE....</div>
<img src="img/big-fuzz.gif" class="big-fuzz">
<img src="img/8Cfd.gif" class="victory">
</div>
</div>
</div>
</div>
<script src="/js/jquery-3.6.3.js"></script>
<script src="/js/konami.js"></script>
</body>
</html>