-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (40 loc) · 1.05 KB
/
index.html
File metadata and controls
43 lines (40 loc) · 1.05 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
41
42
43
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>TicTacToe</title>
</head>
<body>
<h1 id="whowon"></h1>
<div class="scoreboard">
<h2 id="player1score"></h2>
<h2 id="draw"></h2>
<h2 id="player2score"></h2>
</div>
<table id="tictactoetable">
<tbody>
<tr id="firstrow">
<td></td>
<td></td>
<td></td>
</tr>
<tr id="secondrow">
<td></td>
<td></td>
<td></td>
</tr>
<tr id="thirdrow">
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<button id="start-game">START</button>
<button id="reset">Reset Tic Tac Toe</button>
<script type="text/javascript" src="index.js">
</script>
</body>
</html>