forked from wdi-sg/project-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (46 loc) · 1.62 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="./assets/css/style.css">
<link href="https://fonts.googleapis.com/css?family=Lekton" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="landingScreen">
<div class="maplestoryImage"></div>
<div class="instructions">
<h2>Use left and right arrow keys to move, space bar to jump and "C" to attack</h2>
Kill all mobs and avoid dying to reach the boss stage! Defeat the boss and the win is yours!<br>
<br>Skill Keys:<br>
D - Does small amount of damage to one mob<br>
X - Does moderate amount of damage to one mob<br>
Z - Does large amount of damage to one mob<br>
<button id="restart" type="button" name="button"></button>
</div>
</div>
<div class="levelOneGameEnd">
</div>
<div class="topContainer">
<div class="miniMap"></div>
<div class="skillTwo"></div>
<div class="skillThree"></div>
<div class="skillOne"></div>
<div class="player">
</div>
<!-- <div class="bossRight">
</div> -->
<div class="projectile">
</div>
</div>
<div class="bottomContainer">
<div class="hpBar">1000/1000</div>
<div class="mpBar">200/200</div>
<div class="xpBar"></div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="./assets/js/testScript.js" charset="utf-8"></script>
</body>
</html>