-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (28 loc) · 953 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>game</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.js" integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"></script>
<link rel="icon" href="mario.png" type="image/png">
</head>
<body>
<div class="gameContainer">
<div class="gameOver">Welcome to Rishabh mario game</div>
<div class="dino"></div>
<div id="scoreCont">Your score: 0</div>
<a href="#" style="text-decoration:none;">
<div class="reload"></div>
</a>
<div class="obstacle obstacleAni"></div>
</div>
</body>
<script>
$(".reload").on("click", function() {
window.location.href = "index.html"
});
</script>
</html>