-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (50 loc) · 2.06 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
<!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="shortcut icon" href="img/icon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/index.css">
<title>Challenge - Sprint 02</title>
</head>
<body>
<main>
<section class="row" id="logo">
<img width="31" height="48" src="img/logo.svg" alt="Logo da alura">
</section>
<section id="jogo">
<div id="menuAdd">
<div class="row">
<input type="text" id="input" placeholder="Digite a sua palavra" aria-placeholder="Digite a sua palavra">
</div>
<div class="row">
<div class="col">
<button id="salvar">Salvar</button>
</div>
<div class="col">
<button id="voltar">Voltar</button>
</div>
</div>
</div>
<div class="row">
<div class="double-column" id="container">
<div class="row">
<div class="col">
<canvas id="forca" width="800" height="600">O seu navegador não suporta HTML5!</canvas>
</div>
</div>
<div class="row">
<button id="btnNewGame">Novo jogo</button>
<button id="btnQuit">Desistir</button>
</div>
<div class="row"><button id="btnStart">Iniciar jogo</button></div>
<div class="row"><button id="btnAdd">Adicionar palavra</button></div>
</div>
</div>
</section>
</main>
<footer>Criado por: <a href="https://www.linkedin.com/in/matheusbc22/">Matheus</a> - 2022</footer>
<script src="js/index.js" type="text/javascript"></script>
</body>
</html>