-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (42 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<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" />
<link rel="stylesheet" href="./css/style.css" />
<title>Mario Game</title>
</head>
<body>
<main class="game-board">
<img src="./assets/clouds.png" alt="Clouds" class="clouds" />
<img src="assets/mario.gif" alt="Mario" class="mario" />
<img src="assets/pipe.png" alt="Pipe" class="pipe" />
</main>
<section class="instructions">
<p>If you die reload the browser (Press F5 on PC keyboard)</p>
<p>
Se você morrer recarregue o navegador (Aperte F5 no teclado do
Computador)
</p>
</section>
<footer class="contact">
<ul class="social-links">
<li>
<a href="https://github.com/paulopbi" target="_blank">Github</a>
</li>
<li>
<a href="https://www.linkedin.com/in/paulopbi/" target="_blank"
>LinkedIn</a
>
</li>
<li>
<a href="https://www.instagram.com/paulopbi_/" target="_blank"
>Instagram</a
>
</li>
</ul>
</footer>
<script src="./js/script.js"></script>
</body>
</html>