-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.52 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>AOT</title>
<script src="//cdn.jsdelivr.net/phaser/2.5.0/phaser.min.js"></script>
<link rel="stylesheet" href="./index.css" type="text/css">
<link rel="shortcut icon" type="image/png" href="favicon.ico" />
<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=Cinzel:wght@400;600;900&display=swap" rel="stylesheet">
</head>
<body id="game">
<script src="./menu.js"></script>
<script type="text/javascript" src="game.js"></script>
<div class="game-start">
<h1>Attack on Titan 進撃の巨人</h1>
<h2>Instructions:</h2>
<ul class="instructions">
<li>Collect all the keys to reach the basement</li>
<li>Move UP (W), LEFT (A), and RIGHT (D)</li>
<li>If you collide with the titans, you lose!</li>
</br>
</ul>
<button id="start-button">Start</button>
</div>
<div class="game-lose hidden">
<h1>Attack on Titan</h1>
<h2>You Lose :(</h2>
<h3>SHinZoo Wo SasAGEyO!!!~!~!~!~!</h3>
<button id="restart-button-lose">Try Again</button>
</div>
<div class="game-win hidden">
<h1>Attack on Titan</h1>
<h2>Winner!</h2>
<h3>You've Discovered the Basement!!!</h3>
<h3>SHinZoo Wo SasAGEyO!!!~!~!~!~!~!~!~!~!~!</h3>
<button id="restart-button-win">Try Again</button>
</div>
</body>
</html>