-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforca.html
48 lines (41 loc) · 1.65 KB
/
forca.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
<!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="forca.css">
<title>Jogo da Forca - Alura Challenge Oracle Next One</title>
</head>
<body>
<main>
<section class="main">
<img class="logo" src="logo.png" alt="Logo">
<div class="main-canvas">
<canvas class="canvas-forca" id="canvas-id">
Canvas
</canvas>
</div>
<form class="main-form">
<div class="main-linha" id="m-linha0" tabindex="1">
<input type="text" id="input0" name="in0" class="input-linha" autofocus="true" maxlength="1" size="1" >
<img src="linha.png" class="linha" id="line0" alt="Linha0" />
</div>
</form>
<div class="letras-digitadas">
<input class="letras" type="text" name="letra-final" id="char" autofocus="true" maxlength="8" size="1">
</div>
<div class="main-buttons">
<button class="main-buttons-first" id="first">Novo Jogo</button>
<button class="main-buttons-second" id="second">Desistir</button>
</div>
<footer class="footer">
<p class="footer-text">
Site desenvolvido por: Antonio Alves do Rosario Junior - Alura Oracle Next Education - FT2
</p>
</footer>
</section>
</main>
<script src="forca.js"></script>
</body>
</html>