-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjogo.html
68 lines (60 loc) · 2.58 KB
/
jogo.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
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./src/css/jogo.css">
<link rel="stylesheet" href="./src/css/reset.css">
<link rel="icon" type="image/png" href="./src/imagens/logo-peach.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<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=Open+Sans:wght@300&family=Poppins:wght@100;300;500&family=Roboto:wght@500&display=swap" rel="stylesheet">
<title>Jogo da Memória - Super Mario Bros</title>
</head>
<body>
<header class="cabecalho">
<a href="index.html" aria-label="Voltar para a página inicial">
<img class="logo" src="./src/imagens/logo-peach.png" alt="Logo Peach" />
</a>
<nav>
<ul class="menu">
<li>
<a href="index.html" class="menu-item">
<i class="fas fa-home"></i>
<span class="menu-text">Home</span>
</a>
</li>
<li>
<a href="personagens.html" class="menu-item">
<i class="fas fa-users"></i>
<span class="menu-text">Personagens</span>
</a>
</li>
<li>
<a href="jogo.html" class="menu-item">
<i class="fas fa-gamepad"></i>
<span class="menu-text">Jogo</span>
</a>
</li>
<li>
<a href="avaliacoes.html" class="menu-item">
<i class="fas fa-star"></i>
<span class="menu-text">Avaliações</span>
</a>
</li>
</ul>
</nav>
</header>
<main class="container">
<h1>Jogo de Memória</h1>
<div class="card-container"></div>
<button id="reset-button">Reiniciar Jogo</button>
<p id="message" aria-live="polite"></p>
</main>
<footer>
<p>© 2024 <a href="https://github.com/paulaPSOx" target="_blank" class="github-link">PaulaPSOx</a>. Todos os direitos reservados.</p>
</footer>
<script src="./src/js/jogo.js"></script>
</body>
</html>