-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (23 loc) · 726 Bytes
/
index.html
File metadata and controls
24 lines (23 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Game</title>
<script src="game.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 id="personheading"></h1>
<div id="actionpanel">
<button id="multiplybutton" type="button">Multiply</button>
<button id="workbutton" type="button" hidden="true">Work</button>
<button id="pizzabutton" type="button" hidden="true">Purchase Pizza</button>
</div>
<div id="infopanel">
<img id="persongraphic" src="assets/growth_stages/s1.png"></img>
<p id="cellcount" hidden="true">Cells: 1</p>
<p id="moneycount" hidden="true">Money: $0</p>
<p id="pizzacount" hidden="true">Pizzas: 0</p>
</div>
</body>
</html>