-
Notifications
You must be signed in to change notification settings - Fork 0
/
jogo da velha.html
32 lines (32 loc) · 1009 Bytes
/
jogo da velha.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
<!DOCTYPE html>
<html lang="en">
<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="style_2.css">
<title>Jogo da Velha</title>
</head>
<body>
<h1>Jogo da Velha</h1>
<div class="stage">
<div>
<div id="0" class="square"></div>
<div id="1" class="square"></div>
<div id="2" class="square"></div>
</div>
<div>
<div id="3" class="square"></div>
<div id="4" class="square"></div>
<div id="5" class="square"></div>
</div>
<div>
<div id="6" class="square"></div>
<div id="7" class="square"></div>
<div id="8" class="square"></div>
</div>
</div>
<button class="resetar" onclick="reset()">Reiniciar</input>
<script src="./jogodavelha.js"></script>
</body>
</html>