-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
44 lines (44 loc) · 1.33 KB
/
game.html
File metadata and controls
44 lines (44 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./../stylesheets/app.css" />
<link rel="stylesheet" href="./../stylesheets/game.css" />
<link href="https://fonts.googleapis.com/css?family=Bungee+Shade|Walter+Turncoat&display=swap" rel="stylesheet">
<script src="//cdn.jsdelivr.net/npm/phaser@3.19.0/dist/phaser.min.js"></script>
<script src="./scripts/game.js"></script>
<title>Edjudicator</title>
</head>
<body>
<header>
<div class="left-header-spacer"></div>
<h1>Edjudicator</h1>
<div class="right-header-spacer">
<button class="logout-button">Logout</button>
</div>
</header>
<section class="high-scores">
<div class="header-high-scores">
<h2>High Scores</h2>
</div>
<div class="inner-high-scores"></div>
</section>
<section class="controls">
<div class="move-keys">
<div class="inner-move-keys">
<h6>Move Keys</h6>
<p class="keys">↑ ↓ → ←</p>
</div>
</div>
<div class="action-keys">
<div class="inner-action-keys">
<h6>Action keys</h6>
<p class="keys">A S C D</p>
</div>
</div>
</section>
<section class="world-map"></section>
</body>
</html>