-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (45 loc) · 1.79 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
<!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">
<script src="tic-tac-toe.js"></script>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" type="imagex/png" href="image/icon.png">
<title>Jogo da Velha</title>
</head>
<body>
<div class="container">
<h1 id="titulo-principal">Jogo da velha</h1>
<p class="texto-descricao">O melhor jogo da velha!</p>
<p class="texto-descricao" id="texto-jogadores">Jogador X e Jogador O</p>
</div>
<div class="container-quadrado">
<input type="text" class="bn" id="b1" onclick=
"myfunc_3(); myfunc();" readonly></input >
<input type="text"class="bn" id="b2" onclick=
"myfunc_4(); myfunc();" readonly></input >
<input type="text" class="bn" id="b3" onclick=
"myfunc_5(); myfunc();" readonly></input >
<input type="text"class="bn" id="b4" onclick=
"myfunc_6(); myfunc();" readonly></input >
<input type="text"class="bn" id="b5" onclick=
"myfunc_7(); myfunc();" readonly></input >
<input type="text" class="bn" id="b6" onclick=
"myfunc_8(); myfunc();" readonly></input >
<input type="text" class="bn" id="b7" onclick=
"myfunc_9(); myfunc();" readonly></input >
<input type="text"class="bn" id="b8" onclick=
"myfunc_10();myfunc();" readonly></input >
<input type="text" class="bn" id="b9" onclick=
"myfunc_11();myfunc();" readonly></input>
</div>
<button id="but" onclick="myfunc_2()">
RESET
</button>
<div class="ganhador">
<div id="print"></div>
</div>
</body>
</html>