-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.44 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
<!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</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Tic-Tac-Toe</h1>
</header>
<div class="container">
<table class="board">
<tr>
<td id="box1" onclick="clicked(this)"></td>
<td id="box2" onclick="clicked(this)"></td>
<td id="box3" onclick="clicked(this)"></td>
</tr>
<tr>
<td id="box4" onclick="clicked(this)"></td>
<td id="box5" onclick="clicked(this)"></td>
<td id="box6" onclick="clicked(this)"></td>
</tr>
<tr>
<td id="box7" onclick="clicked(this)"></td>
<td id="box8" onclick="clicked(this)"></td>
<td id="box9" onclick="clicked(this)"></td>
</tr>
</table>
</div>
<footer>
<div>Choice for First Player:</div>
<ul>
<li>
<button class="choice" id="x" onclick="btnclick(this)">X</button>
<button class="choice" id="o" onclick="btnclick(this)">O</button>
</li>
</ul>
</footer>
<script src="script.js"></script>
</body>
</html>