-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame-start.html
68 lines (44 loc) · 1.6 KB
/
game-start.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PaperBoy</title>
<link rel="shortcut icon" href="">
<!-- To remove this console.log error: "Failed to load resource: the server responded with a status of 404 (Not Found)"-->
<link rel="stylesheet" href="./styles/main.css">
</head>
<body>
<div id="game-canvas">
<!--div for game play---------->
<div id="game-container">
<div id="game-road"></div>
<div id="houses-container">
<div class="house" id="house1"></div>
<div class="tree" id="tree1"></div>
<div class="house" id="house2"></div>
<div class="tree" id="tree2"></div>
<div class="house" id="house1"></div>
<div class="tree" id="tree1"></div>
</div>
<div id="info-container">
<div id="score-display">Score: 0</div>
<div id="energy-container">
<p id="energy">Health:</p>
<div id="bar"></div>
</div>
<div id="time-container">
<div id="timer"></div>
</div>
</div>
</div>
</div>
</div>
<script src="./js/player.js"></script>
<script src="./js/newspaper.js"></script>
<script src="./js/mailbox.js"></script>
<script src="./js/obstacle.js"></script>
<script src="./js/obstacle2.js"></script>
<script src="./js/main.js"></script>
</body>
</html>