-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (62 loc) · 2.21 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Nightfall</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles/fonts/arcaderegular.css" type="text/css" charset="utf-8" />
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="styles/style.css">
</head>
<body>
<section class="wrapper">
<canvas id="backdrop" width="1000" height="700"></canvas>
<canvas id="screen" width="1000" height="700"></canvas>
<canvas id="background" width="1000" height="700"></canvas>
<div id="menu">
<h1 class="game-title">NightFall</h1>
<div class="position">
<div class="coop"><h4>Play</h4><img src="../assets/coop.png"></div>
</div>
</div>
<div id="character-selection">
<h2 class="select-text">Select Your Character</h2>
<div class="character-class">
<article class="archer">
<h2>archer</h2>
<img src="../assets/archer.png">
<h5>weapon: fire/ice arrow</h5>
<h5>speed: average (4)</h5>
<h5>rate of fire: fast</h5>
<h5>effective range: all</h5>
</article>
<article class="assassin">
<h2>assassin</h2>
<img src="../assets/ninja.png">
<h5>weapon: kunai</h5>
<h5>speed: fast (4.4)</h5>
<h5>rate of fire: slow</h5>
<h5>effective range: short/medium</h5>
</article>
<article class="mage">
<h2>mage</h2>
<img src="../assets/mage.png">
<h5>weapon: fire orb</h5>
<h5>speed: slow (3.8)</h5>
<h5>rate of fire: very fast</h5>
<h5>effective range: medium/long</h5>
</article>
<div class="player-pos">
<!--<h6>Choose your Character</h6>-->
</div>
<div class="level-select-container">
<button class="level-select select-level-1">level 1</button>
<button class="level-select select-level-2">level 2</button>
<button class="level-select select-level-3">level 3</button>
</div>
</div>
</div>
</section>
<script src="main.bundle.js"></script>
</body>
</html>