-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (38 loc) · 1.08 KB
/
Copy pathindex.html
File metadata and controls
40 lines (38 loc) · 1.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tic Tac Toe</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<h1>Tic Tac Toe</h1>
<div class="container">
<div class="row">
<div id="0" class="field"></div>
<div id="1" class="field"></div>
<div id="2" class="field"></div>
</div>
<div class="row">
<div id="3" class="field"></div>
<div id="4" class="field"></div>
<div id="5" class="field"></div>
</div>
<div class="row">
<div id="6" class="field"></div>
<div id="7" class="field"></div>
<div id="8" class="field"></div>
</div>
</div>
<div id="end">
<h2>Game Over!</h2>
<p class="result"></p>
<button class="play-again-button" onclick="startGame()">
Play Again?
</button>
</div>
<button class="reset-button" onclick="startGame()">Reset</button>
</body>
<script src="script.js"></script>
</html>