-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (34 loc) · 1.54 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Desenvolvido por Arydiane Jardim">
<meta name="description" content="Jogo Mario Jump">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<title>Mario Jump</title>
</head>
<body>
<main>
<div class="game-board">
<p class="msg-score">Score: 0</p>
<h1 class="msg-initial centralize">Pressione qualquer tecla para iniciar!</h1>
<div class="container-msg-game-over centralize">
<h1 class="msg">Game Over</h1>
<button class="btn">Reiniciar</button>
</div>
<img src="./images/clouds.png" class="clouds" alt="Nuvens">
<img src="./images/mario.gif" class="mario" alt="Mario">
<img src="./images/pipe.png" class="pipe" alt="Cano">
</div>
<p class="author">Desenvolvido por Arydiane Jardim</p>
</main>
<audio src="./sounds/super-mario.mp3" id="audio-initial" autoplay loop></audio>
<audio src="./sounds/game-over.mp3" id="audio-game-over"></audio>
<script src="./js/script.js" type="module"></script>
</body>
</html>