-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
49 lines (49 loc) · 1.81 KB
/
index2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gotta Dodge'em All</title>
<link rel="stylesheet" href="styles/gamescreen.css">
<link rel="stylesheet" href="styles/gameover.css">
</head>
<body>
<div class="gameoverdiv">
<img class="gameoverimg" src="cars/gameover.png">
<p class="saveprogress">Save your progress :</p>
<div class="detail_submission">
<input type="text" name="player_name" id="player_name" placeholder="Enter your name">
<button class="submit">
<img class="submitimage" src="cars/arrow.png">
</button>
</div>
<button class="reset">Reset</button>
<button class="homescreen">Home</button>
<button class="stats">Records</button>
</div>
<audio class="mainbg" volume="0.1" src="music/hill-climb-racing_1.mp3" autoplay loop></audio>
<div class="road">
<div class="score">
Score : 0
</div>
<button class="music_off">
<img class="music" src="styles/volume-up.png">
</button>
<div>
<img class="car" src="cars/436-4361360_top-down-racing-game-with-book-assets-car-removebg-preview.png" alt="">
</div>
<div>
<img class="obstacle" src="cars/[removal.ai]_ac23b4f9-c20e-4ce1-87ef-b6cdbf92749d-traffic-barriers-collection.png">
</div>
<div class="lline"></div>
<div class="division">
<div class="white_stripe1"></div>
<div class="white_stripe2"></div>
</div>
<div class="rline"></div>
</div>
<script src="scripts/gamelogic.js"></script>
<script src="scripts/gameover.js"></script>
<!-- <script src="scripts/loadbox.js"></script> -->
</body>
</html>