-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (38 loc) · 1.21 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jogo | Alura</title>
<!-- *Styles* -->
<link rel="stylesheet" href="css/geral.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/animations.css">
<link rel="stylesheet" href="css/responsive.css">
<!-- *Fonts* -->
<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=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
</head>
<body>
<header>
<a href="index.html">
<img src="assets/logo-alura.svg" alt="Logo da Alura.">
</a>
</header>
<main>
<div class="menu">
<span class="bg-btn">
<a class="btn" href="pages/game.html">Começar jogo</a>
</span>
<span class="bg-btn">
<a class="btn" href="pages/add-word.html">Adicionar palavra</a>
</span>
</div>
</main>
<footer>
<span class="copyright">© 2022 Jogo Contexto , by <a href="https://github.com/JoaoPdr3"
target="_blank">JoaoPdr3</a></span>
</footer>
</body>
</html>