-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.34 KB
/
index.html
File metadata and controls
37 lines (37 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>TicTacToe - Ron Assaf</title>
<link rel="stylesheet" type="text/css" href="style/style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="playerTurn">Now playing: <span id="nowPlaying"></span></div>
<table id="board">
<tbody>
<tr>
<td class="rightBorder"></td>
<td class="rightBorder"></td>
<td></td>
</tr>
<tr class="topBorder">
<td class="rightBorder"></td>
<td class="rightBorder"></td>
<td></td>
</tr>
<tr class="topBorder">
<td class="rightBorder"></td>
<td class="rightBorder"></td>
<td></td>
</tr>
</tbody>
</table>
<div id="wrapper">
<button id="resetGame" onclick="resetGame()">Reset Game</button>
</div>
<script src="javascript/Players.js" type="application/javascript"></script>
<script src="javascript/Board.js" type="application/javascript"></script>
<script src="javascript/TicTacToe.js" type="application/javascript"></script>
</body>
</html>