-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (59 loc) · 3.31 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
57
58
59
60
61
<!DOCTYPE html>
<html lang="pt-BR">
<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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" /> <!-- Font Awesome -->
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet"> <!-- Fonte Press Start 2P -->
<link rel="shortcut icon" href="img/mario_dead.png" type="image/x-icon"> <!-- Favicon -->
<link rel="stylesheet" href="css/style.css"> <!-- Css -->
<title>Mario Jump - Game Javascript</title> <!-- Titulo -->
</head>
<body>
<main id="background-screen">
<article>
<section>
<div class="game-screen">
<!-- Game -->
<div class="clouds pause-initial-clouds">
<img src="img/clouds.png" alt="Nuvem Super Mario" id="clouds">
</div>
<div class="montains pause-initial-montains">
<img src="img/montain.png" alt="Montanha Super Mario" id="montains">
</div>
<img src="img/mario_speed.gif" alt="Super mario correndo" class="game-mario-running pause-initial-mario">
<img src="img/pipe.png" alt="Pipe super mario" class="game-pipe pause-initial-pipe">
<div class="press-start-game">
<img src="img/presstostart.png" alt="Pressione para iniciar Mario Jump">
</div>
<div class="quantitysCoins">
<img src="img/star.png" alt="Moedas ganhas Mario Jump">
<p id="quantitysCoins">0</p>
</div>
<div class="recordCoins">
<img src="img/coin.png" alt="Moedas ganhas Mario Jump">
<p id="recordCoins">0</p>
</div>
<div class="press-reaload-game-over">
<img src="img/gameover.png" alt="Game Over Mario Jump">
</div>
<!-- Socials -->
<div class="socials-background">
<div class="socials-border">
<p>REDES</p>
</div>
<div class="social-medias">
<div class="github socials"><a href="https://github.com/vitorlbarroso/" target="_blank"><i class="fab fa-github"></i></a></div>
<div class="linkedin socials"><a href="https://www.linkedin.com/in/vitorlbarroso2004/" target="_blank"><i class="fab fa-linkedin"></i></a></div>
<div class="instagram socials"><a href="https://instagram.com/vitorlbarroso/" target="_blank"><i class="fab fa-instagram"></i></a></div>
</div>
</div>
</div>
</section>
</article>
</main>
<script src="js/script.js"></script>
<script src="js/social-efect.js"></script>
</body>
</html>