-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart.html
35 lines (35 loc) · 1.22 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jerry-Run</title>
<link rel="icon" href="fight.png" type="image/icon type">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="gameContainer">
<div class="text">
<h1 class="gameOver">Game Over</h1>
<h2 class="scoreCount">Score: 0</h2>
</div>
<div class="imageGameContainer"></div>
<div class="jerry"></div>
<div class="jerryCaught"></div>
<div class="tom animateTom "></div>
<audio id="myAudio">
<source href="Jump.mp3" type="audio/mpeg">
</audio>
<div class="btn_container d-flex align-items-center">
<div class="">
<button class="btn btn_jump btnStyle" onclick="buttonClick()">Jump</button>
</div>
<div class="">
<button onclick="location.reload();" class="btn btn_refresh btnStyle">Restart</button>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>