forked from KitFitso/Policy_Game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
156 lines (143 loc) · 5.68 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="CSS/style.css" rel="stylesheet" />
<script src="JS/resourceInfo.js" async></script>
<script src="JS/buttons.js" async></script>
<script src="JS/food.js" async></script>
<script src="JS/population.js" async></script>
<script src="JS/jobs.js" async></script>
<script src="JS/script.js" async></script>
</head>
<header>
</header>
<body>
<section class="resources">
<div id="food">
<div style='margin-top: 6px'>FOOD</div>
<div id="foodCount" style='margin-top: 6px'>Count</div>
<div id="foodMax" style='margin-top: 6px'>MAX</div>
<div id='bar'>
<div id='foodProgress' style='width:0'>0%</div>
</div>
</div>
<div id="iron">
<div style='margin-top: 6px'>IRON</div>
<div id="ironCount" style='margin-top: 6px'>Count</div>
<div id="ironMax" style='margin-top: 6px'>MAX</div>
<div id='bar'>
<div id='ironProgress' style='width:0'>0%</div>
</div>
</div>
<div id="wood">
<div style='margin-top: 6px'>WOOD</div>
<div id="woodCount" style='margin-top: 6px'>Count</div>
<div id="woodMax" style='margin-top: 6px'>MAX</div>
<div id='bar'>
<div id='woodProgress' style='width:0'>0%</div>
</div>
</div>
<div id="stone">
<div style='margin-top: 6px'>STONE</div>
<div id="stoneCount" style='margin-top: 6px'>Count</div>
<div id="stoneMax" style='margin-top: 6px'>MAX</div>
<div id='bar'>
<div id='stoneProgress' style='width:0'>0%</div>
</div>
</div>
<div id="money">
<div style='margin-top: 6px'>MONEY</div>
<div id="moneyCount" style='margin-top: 6px'>Count</div>
<div id="moneyMax" style='margin-top: 6px'>MAX: 10</div>
<div id='bar'>
<div id='moneyProgress' style='width:0'>0%</div>
</div>
</div>
</section>
<section class="info">
<div id="population">
<div style='margin-top: 6px'>Population</div>
<div id="popCount" style='margin-top: 6px'>0</div>
<div style='margin-top: 6px'>Children</div>
<div id="childCount" style='margin-top: 6px'>0</div>
<div style='margin-top: 6px'>Workers</div>
<div id="workerCount" style='margin-top: 6px'>0</div>
<div style='margin-top: 6px'>Elders</div>
<div id="elderCount" style='margin-top: 6px'>0</div>
</div>
<div id="influence">
<div style='margin-top: 6px'>Influence</div>
<div style='margin-top: 6px'>0</div>
<div style='margin-top: 6px'>Births</div>
<div id="birthCount" style='margin-top: 6px'>0</div>
<div style='margin-top: 6px'>Deaths</div>
<div id="deathCount" style='margin-top: 6px'>0</div>
</div>
</section>
<section class="jobs">
<div id="jobsbackground" class="jobs">
<div id="farmers" class="ruraljobs">
<div style='margin-top: 3px'>Farmers</div>
<div>0</div>
</div>
<div class="ruraljobs">
<div style='margin-top: 3px'>Foragers</div>
<div id="foragers">0</div>
</div>
<div class="ruraljobs">
<div style='margin-top: 3px'>Loggers</div>
<div id="loggers" >0</div>
</div>
<div class="ruraljobs">
<div style='margin-top: 3px'>Hunters</div>
<div id="hunters">0</div>
</div>
<div class="ruraljobs">
<div style='margin-top: 3px'>Miners</div>
<div id="miners">0</div>
</div>
<div class="cityjobs">
<div style='margin-top: 3px'>Traders</div>
<div id="traders">0</div>
</div>
<div class="cityjobs">
<div style='margin-top: 3px'>Scholars</div>
<div id="scholars">0</div>
</div>
<div class="cityjobs">
<div style='margin-top: 3px'>Military</div>
<div id="military">0</div>
</div>
<div class="cityjobs">
<div style='margin-top: 3px'>Doctors</div>
<div id="doctors">0</div>
</div>
<div class="cityjobs">
<div style='margin-top: 3px'>Artisans</div>
<div id="artisans">0</div>
</div>
<div class="cityjobs">
<div style='margin-top: 3px'>Entertainers</div>
<div id="entertainers">0</div>
</div>
<div class="cityjobs">
<div style='margin-top: 3px'>Carpenters</div>
<div id="carpenters">0</div>
</div>
</div>
</section>
<section class="buttons">
<button class="button" value="false">Burn Food</button>
<button class="button" value="false">Burn Iron</button>
<button class="button" value="false">Burn Wood</button>
<button class="button" value="false">Burn Stone</button>
<button class="button" value="false">Burn Money</button>
</section>
<footer>
<a href="https://www.freepik.com/free-photos-vectors/label">Label vector created by starline - www.freepik.com</a>
</footer>
</body>
</html>