-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·117 lines (101 loc) · 3 KB
/
index.html
File metadata and controls
executable file
·117 lines (101 loc) · 3 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Connect Four</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<!-- Include CSS -->
<link rel="Stylesheet" type="text/css" href="css/app.css" />
<!-- Include JS -->
<script defer src="./js/connect-four.js"></script>
<script defer src="./js/connect-four.board.js"></script>
<script defer src="./js/connect-four.players.js"></script>
<script defer src="./js/connect-four.utilities.js"></script>
<script defer src="./js/app.js"></script>
</head>
<body>
<h1 id="c4" class="text-centered">Connect Four</h1>
<h2 class="text-centered">Max, Thomas, Nate</h2>
<div class="text-centered">
Wins:
<span id="player1-wins">0</span>
<span class="turn" id="player1"></span>
<span id="player2"></span>
Wins:
<span id="player2-wins">0</span>
</div>
<div id="center">
<table id="connect-four" cellspacing="0" cellpadding="0">
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
<div id="game-setup">
<button id="start-game">Start Game</button>
Red Player:
<select id="player1-type">
<option value="1">Human</option>
<option value="2">Random AI</option>
<option value="3">Myopic AI</option>
</select>
Black Player:
<select id="player2-type">
<option value="1">Human</option>
<option value="2">Random AI</option>
<option value="3">Myopic AI</option>
</select>
</div>
</div>
</body>
</html>