-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (29 loc) · 1.37 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
<!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.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<title>Document</title>
</head>
<body>
<div id="container">
<p>Vencedor <label id="vencedor"></label></p>
<p>Pontos <br>X: <label id="Xpontos">0</label> <br>O: <label id="Opontos">0</label></p>
<div id="tabela">
<div onclick="começar(this.id)" id="tabela__elemento1"></div>
<div onclick="começar(this.id)" id="tabela__elemento2"></div>
<div onclick="começar(this.id)" id="tabela__elemento3"></div>
<div onclick="começar(this.id)" id="tabela__elemento4"></div>
<div onclick="começar(this.id)" id="tabela__elemento5"></div>
<div onclick="começar(this.id)" id="tabela__elemento6"></div>
<div onclick="começar(this.id)" id="tabela__elemento7"></div>
<div onclick="começar(this.id)" id="tabela__elemento8"></div>
<div onclick="começar(this.id)" id="tabela__elemento9"></div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>