-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (71 loc) · 2.12 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
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
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
crossorigin="anonymous"
/>
<meta charset="utf-8" />
<title>The Lost Frog</title>
<link rel="stylesheet" href="src/styles/index.css" type="text/css" />
<script src="src/index.ts"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col">
<h1>The Lost Frog</h1>
</div>
</div>
<div class="row">
<div class="col text-center">
<div id="game-container"></div>
</div>
</div>
<div class="row">
<div class="col">
<h2>Controls</h3>
</div>
</div>
<div class="row">
<div class="col-3">
<h5>Movement:</h5>
<ul>
<li><strong>A</strong> : Run left</li>
<li><strong>D</strong> : Run right</li>
<li><strong>Space</strong> : Jump</li>
</ul>
</div>
<div class="col-3">
<h5>Wall Climb:</h5>
<ul>
<li><strong>W</strong> : Climb up</li>
<li><strong>S</strong> : Climb down</li>
<li><strong>Space</strong> : Wall jump</li>
</ul>
</div>
<div class="col-3">
<h5>Ceiling Climb:</h5>
<ul>
<li><strong>A</strong> : Climb left</li>
<li><strong>D</strong> : Climb right</li>
<li><strong>S</strong> : Stop climbing</li>
</ul>
</div>
<div class="col-3">
<h5>Actions:</h5>
<ul>
<li><strong>Up</strong> : Attack up</li>
<li><strong>Down</strong> : Attack down</li>
<li><strong>Left</strong> : Attack left</li>
<li><strong>Right</strong> : Attack right</li>
</ul>
</div>
</div>
<span><strong>Thanks for playing! 🐸</strong></span>
</div>
</body>
</html>