-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.16 KB
/
Copy pathindex.html
File metadata and controls
43 lines (43 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel = "stylesheet" type="text/css" href="assets/stylesheets/game.css"/>
<title>Idle Developer</title>
</head>
<body>
<div id='game'>
<div class="stats">
<div class="stats__money">
<img alt="money icon" src="assets/images/money.png" class="icon">
<div id="money"></div>
</div>
<div class="stage">
<div id="stage"></div>
</div>
<div class="project">
<div id="project-length"></div>
<div id="project-progress"></div>
</div>
</div>
<div id='office'>
<div class="wall"></div>
<div class="employers">
<div class="you">
<img alt="main character" class="character" src="assets/images/main-guy.png">
</div>
<!-- employers here !-->
</div>
</div>
</div>
<footer>
<div>
<button id='hire_help'>Hire a developer</button>
<button id='improve_self'>Improve yourself</button>
</div>
</footer>
</body>
<script src="assets/javascript/developers.js"></script>
<script src="assets/javascript/projects.js"></script>
<script src="assets/javascript/game.js"></script>
</html>