generated from cursos-e-estudos/template-de-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (41 loc) · 1.99 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jogo da velha</title>
<!-- icones -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/icons/favicon-16x16.png">
<link rel="manifest" href="assets/icons/site.webmanifest">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="assets/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA==" crossorigin="anonymous" />
</head>
<body>
<h1>Jogo da Velha</h1>
<div>
<div class="quadrado" id="1" onclick="escolherQuadrado(this.id)">0</div>
<div class="quadrado" id="2" onclick="escolherQuadrado(this.id)">0</div>
<div class="quadrado" id="3" onclick="escolherQuadrado(this.id)">0</div>
</div>
<div>
<div class="quadrado" id="4" onclick="escolherQuadrado(this.id)">0</div>
<div class="quadrado" id="5" onclick="escolherQuadrado(this.id)">0</div>
<div class="quadrado" id="6" onclick="escolherQuadrado(this.id)">0</div>
</div>
<div>
<div class="quadrado" id="7" onclick="escolherQuadrado(this.id)">0</div>
<div class="quadrado" id="8" onclick="escolherQuadrado(this.id)">0</div>
<div class="quadrado" id="9" onclick="escolherQuadrado(this.id)">0</div>
</div>
<div class="jogador">
<label>Jogador</label>
<label id="jogador-selecionado"></label>
</div>
<div class="vencedor"><button onclick="iniciaJogo()">Reiniciar</button></div>
<script defer src="assets/main.js"></script>
</body>
</html>