-
Notifications
You must be signed in to change notification settings - Fork 0
/
index1.html
34 lines (28 loc) · 960 Bytes
/
index1.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
<!DOCTYPE html>
<html>
<head>
<title>Tic Tac Toe</title>
<script type="text/javascript" src="js/scripts.js"></script>
<link rel="stylesheet" href="styles/ticstyle.css">
</head>
<body>
<div class="game-area">
<div class="game-options">
<select name="game_type" id="game_type" onchange="resetAIButton()">
<option value="3">3 x 3 Board</option>
<option value="4">4 x 4 Board</option>
<option value="5">5 x 5 Board</option>
</select>
<input type="checkbox" name="robot" checked="true" id="robot"> With Computer? <br/>
<input type="submit" value="Start Game" onclick="generateGame()" class="submit-button">
</div>
<div id="game-board" class="game-board">
Please select your game from above, then press 'Start Game'.
</div>
<div class="score-card">
Player X Score: <span id="score-X">0</span> <br>
Player Y Score: <span id="score-Y">0</span>
</div>
</div>
</body>
</html>