-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (30 loc) · 831 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JS Konami Code</title>
<style>
html, body {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
font-family: monospace;
font-size: 32pt;
font-weight: bold;
background-color: #222222;
color: #eeeeee;
}
</style>
</head>
<body>
<p>↑ ↑ ↓ ↓ ← → ← → B A</p>
<audio id="code-confirmation-sound"
preload
src="https://github.com/levilindsey/js-konami-code/blob/main/contra_title.mp3?raw=true"></audio>
<script defer
type="text/javascript"
src="https://levilindsey.github.io/js-konami-code/js-konami-code.js"></script>
</body>
</html>