-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (23 loc) · 1.03 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
<!-- https://t.co/YU7tgz1F3y - for cool characters -->
<!-- Sprites generously provided by http://freegameassets.blogspot.com/2013/09/asteroids-and-planets-if-you-needed-to.html -->
<html>
<head>
<title>Div's World</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div id="gameboard" style="display:none;">
<div id="hero_div" class="person">:)</div>
</div>
<div id="stage_select">
<h1>Select a Stage!</h1>
<button id="stage_1" onclick="setStage(1);">Stage 1</button>
<button id="stage_2" onclick="setStage(2);">Stage 2</button>
<button id="stage_3" onclick="setStage(3);">Stage 3</button>
<button id="stage_4" onclick="setStage(4);">Stage 4</button>
<button id="stage_5" onclick="setStage(5);">OMGWTFBBQ</button>
</div>
</body>
</html>