-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (47 loc) · 1.66 KB
/
index.html
File metadata and controls
56 lines (47 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<link rel="stylesheet" href="css/site.css" />
<link href="https://fonts.googleapis.com/css?family=Margarine" rel="stylesheet">
</head>
<body>
<div class="game-container">
<div class="messages">
<h1>Welcome!</h1>
<h3>Instructions:</h3>
<p>Move the characters by either clicking on the arrow buttons with your mouse, or
using the keyboard controls 'W A S D' for Alice and 'I J K L' for Bob.</p>
</div>
<div class="game">
<div class="bg-grid">
<div class="bg-tile"></div>
</div>
<div class="player-grid">
<div class="player bob"></div>
<div class="player alice"></div>
</div>
</div>
<div class="controls">
<!-- gold -->
<div class="btn-grid-gold">
<button class="btn-up-gold"></button>
<button class="btn-left-gold"></button>
<button class="btn-down-gold"></button>
<button class="btn-right-gold"></button>
</div>
<!-- white -->
<div class="btn-grid-white">
<button class="btn-up-white"></button>
<button class="btn-left-white"></button>
<button class="btn-down-white"></button>
<button class="btn-right-white"></button>
</div>
</div>
</div>
<div class="messages">
<footer>Brought to you by Mixify™ 🍹🥂</footer>
</div>
<script src="js/game.js"></script>
</body>
</html>