-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (58 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
55
56
57
58
59
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tic Tac Toe</title>
<link rel="stylesheet" href="./style/style.css">
</head>
<body>
<div id="fundoHeader">
<header>
<div id="logo">
<img src="./image/hashtag.png" alt="hashtag">
</div>
<nav>
<li><a href="">Jogo</a></li>
<li><a href="./pages/regras.html">Regras</a></li>
</nav>
</header>
</div>
<main>
<section>
<div id="bonecos">
<img src="./image/x.png" alt="boneco vermelho" id="x">
</div>
<div id="jogo">
<div id="mensagemVitoria" class="oculto">
<span id="vencedor"></span> <img id="imagem_clashroyale" src="./image/heheheha-clash-royale.gif">
</div>
<h2 class="vezdo">Vez do:</h2>
<div id="vez">X</div>
<div class="tabuleiro">
<div class="linha">
<button data-pos="0"></button>
<button data-pos="1"></button>
<button data-pos="2"></button>
</div>
<div class="linha">
<button data-pos="3"></button>
<button data-pos="4"></button>
<button data-pos="5"></button>
</div>
<div class="linha">
<button data-pos="6"></button>
<button data-pos="7"></button>
<button data-pos="8"></button>
</div>
</div>
<button id="reiniciar">reiniciar</button>
</div>
<div id="bonecos">
<img src="./image/bolanova.png" alt="boneco azul" id="bola">
</div>
</section>
</main>
<script src="./script/script.js"></script>
</body>
</html>