This repository was archived by the owner on Aug 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (33 loc) · 1.3 KB
/
Copy pathindex.html
File metadata and controls
35 lines (33 loc) · 1.3 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
<!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">
<title>Jogo da forca</title>
<link rel="shortcut icon" href="./imagens/logo.svg" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Cabeçalho -->
<header>
<div class="card-imagem">
<img src="./imagens/logo.svg" alt="">
</div>
</header>
<!-- Conteúdo principal -->
<main>
<section class="pagina pagina-inicial">
<div class="botoes-pg-inicial">
<a href="./forca.html"><button class="btn-pg-inicial btn-principal">Começar a jogar</button></a><br><br>
<a href="./novaPalavra.html"><button class="btn-pg-inicial btn-secundario">Adicionar nova palavra</button></a><br><br>
<center><button class="btn-controle" title="Apagar as palavras adicionadas" onclick="apagarPalavrasAdicionadas()"><i class="fa-solid fa-trash"></i></button></center>
</div>
</section>
</main>
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script src="script.js"></script>
</body>
</html>