-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·62 lines (53 loc) · 1.24 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
51
52
53
54
55
56
57
58
59
60
61
62
<!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">
<title>TIC TAC TOE GAME</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="container">
<h2>TIC-TAC-TOE</h2>
<div class="playerNum">
How would you like to play?
<br>
<div id="single">Single Player</div>
<div id="multi">Two Players</div>
</div>
<div class="symbol">
Player 1: What you wanna be?
<br>
<span id="X">X</span>
<span id="O">O</span>
</div>
<div class="table">
<table>
<tr>
<td class="box" id="1"></td>
<td class="box" id="2"></td>
<td class="box" id="3"></td>
</tr>
<tr>
<td class="box" id="4"></td>
<td class="box" id="5"></td>
<td class="box" id="6"></td>
</tr>
<tr>
<td class="box" id="7"></td>
<td class="box" id="8"></td>
<td class="box" id="9"></td>
</tr>
</table>
</div>
<div class="winner">
<div id="name">
</div>
<div class="replay">
Replay?
</div>
</div>
<script src="./js/main.js"></script>
</body>
</html>