-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 1.3 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
<!DOCTYPE html>
<html lang="pt">
<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>Mario Jump</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="shortcut icon" href="./img/hat-mario.ico" type="image/x-icon">
<script src="./js/script.js" defer></script>
</head>
<body>
<div class="logo"></div>
<div class="logo2"></div>
<div class="size">
<div class="game-board">
<div id="score"> Score: 0</div>
<img src="./img/clouds.png" class="clouds">
<img src="./img/mario.gif" class="mario">
<img src="./img/pipe.png" class="pipe">
<div class="chao"></div>
<button id="reiniciar">
<img src="https://cdn0.iconfinder.com/data/icons/interface-150/24/Restart-64.png" class="img-reiniciar">
</button>
</div>
</div>
<button id="pular">
<img src="https://static.wikia.nocookie.net/fanintendo/images/c/ce/359px-Mario_Jump_NSMBU_%2829%29.png/revision/latest?cb=20130903233927&path-prefix=pt" class="img-pular">
</button>
<a href="https://github.com/M4theus13">
<div class="dev">Desenvolvido por: Matheus Garcia</div>
</a>
</body>
</html>