-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (46 loc) · 1.31 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="pt-br">
<head>
<!-- title -->
<title>Jogo da Velha</title>
<!-- meta -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- links / style -->
<link rel="icon"
type="image/svg"
href="assets/images/arcade.svg"
/>
<link rel="stylesheet" href="style/style.css" />
<!-- scripts -->
<script defer src="js/game.js"></script>
<script defer src="js/interface.js"></script>
</head>
<body>
<main>
<header>
<h1>Jogo da Velha</h1>
</header>
<section>
<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>
</section>
<section class="reset">
<button onclick="restartGame()">Reset</button>
</section>
</main>
</body>
</html>