-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (65 loc) · 2.13 KB
/
index.html
File metadata and controls
67 lines (65 loc) · 2.13 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
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>This could be called a game</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div id="container">
<div id="title-screen">
<h1>Unnamed Survival game</h1>
<h2>(Putting the M in MVP)</h2>
<ul>
<li id="start-button"> Start Game</li>
<li id="instructions">How to Play</li>
<li id="high-scores">High Scores</li>
</ul>
</div>
<div id="instruction-screen">
<h1>How to Play</h1>
<p>You are that purple blob.</p>
<p>Trust me, you can't miss it. </p>
<p>Avoid the other blobs. If they touch you, you lose.</p>
<p>Except the blobs that don't move. Touch those, they help you.</p>
<p>Oh, and move with WASD</p>
<h3 id="back-button">Back</h3>
</div>
<div id="high-score-screen">
<h1>High Scores</h1>
<div id="scoreboard">
</div>
<h3 id="back-button-2">Back</h3>
</div>
<div id="game-over-screen">
<h3>Aw shucks! You got got!</h3>
<h3 id="final-score"> </h3>
<div id="high-score-prompt">
<h3>That's a High Score!</h3>
<input type="text" id="initials" minlength="3" maxlength="3" placeholder="Enter your initials">
</div>
<h4 id="play-again">Play Again</h4>
</div>
<aside id = "top">
<h1>SURVIVE</h1>
</aside>
<aside id="side-mdl">
<h2>Score</h2>
<p id="points"> 0</p>
<h2>High Score</h2>
<p id ='the-high-score'>0</p>
</aside>
<aside id="side-btm">
<h2>LEVEL</h2>
<h2 id="level"></h2>
</aside>
<main>
<canvas id="canvas"></canvas>
</main>
</div>
<script src="js/app.js"></script>
</body>
</body>
</html>