-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
56 lines (41 loc) · 1.46 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta nome='viewport' content="'width=device-width, initial-scale=1.0">
<title>Mario Jump</title>
<link rel="stylesheet" href="./css/style.css" type="text/css">
<link rel="stylesheet" href="./css/style2.css"type="text/css">
<script src="./js/script.js" defer></script>
<script src="./js/script2.js" defer></script>
<script src="https://kit.fontawesome.com/998c60ef77.js" crossorigin="anonymous"></script>
<style>
*{
margin: 0;
box-sizing: border-box;
}
</style>
<title>Mario Jump</title>
</head>
<div class="game-menu">
<img src ="Images/menu.png" height="40" width="150">
</div>
<div class="Score"></div>
<div class="button-play">
<button id= "refresh"><img src ="Images/restart.png" height="50" width="150"> </button>
</div>
<div class="game-board">
<img src="./Images/clouds.png" class="clouds">
<img src="./Images/mario.gif" class="mario">
<img src="./Images/pipe.png" class="pipe">
</div>
<div class="button-dark-mode">
<input type="checkbox" class="checkbox" id="chk">
<label class="label" for="chk">
<i class="fas fa-moon"></i>
<i class="fas fa-sun"></i>
<div class="ball"></div>
</label>
</div>
</body>
</html>