-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (41 loc) · 1.68 KB
/
index.html
File metadata and controls
49 lines (41 loc) · 1.68 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<!-- Meta tags -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Ubaldo Meireles de Jesus Sousa" />
<meta name="description" content="Jogo do Mario em JavaScript" />
<!-- Stylesheets -->
<link rel="stylesheet" type="text/css" href="./css/style.css" />
<link rel="stylesheet" type="text/css" media="screen and (max-width: 600px)" href="./css/mobile.css" />
<!-- Favicon -->
<link rel="shortcut icon" href="./img/favicon.ico" />
<title>Super Mario</title>
</head>
<body>
<!-- Game board -->
<div class="game-board">
<img src="./img/clouds-gamer.png" class="clouds-1" alt="nuvens" />
<img src="./img/clouds-gamer.png" class="clouds-2" alt="nuvens" />
<img src="./img/clouds-gamer.png" class="clouds-3" alt="nuvens" />
<img src="./img/mario-stop.png" class="mario" alt="personagem Mario parado" />
<img src="./img/pipe-game.png" class="pipe" alt="cano" />
<img src="./img/grass.png" class="grass" alt="grama" />
<div class="floor">
<img src="./img/floor.png" class="floor-1" alt="chão" />
<img src="./img/floor.png" class="floor-2" alt="chão" />
<img src="./img/floor.png" class="floor-3" alt="chão" />
</div>
</div>
<!-- Start text -->
<p id="text-start">Para jogar, pressione</p>
<!-- Footer -->
<footer class="footer">
Desenvolvido por Ubaldo Meireles de Jesus Sousa
</footer>
<!-- JavaScript -->
<script defer src="./js/script.js"></script>
</body>
</html>