-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (53 loc) · 3.86 KB
/
index.html
File metadata and controls
56 lines (53 loc) · 3.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-7">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<script src="project1.js" defer></script>
<!--<script src=""></script>-->
</head>
<body>
<h1>"Normal Checkers"</h1>
<table class="gameboard-wrapper">
<tr>
<td class="tile black-tile" id="(0, 7)"></td><td class="tile white-tile" id="(1, 7)"></td><td class="tile black-tile" id="(2, 7)"></td><td class="tile white-tile" id="(3, 7)"></td>
<td class="tile black-tile" id="(4, 7)"></td><td class="tile white-tile" id="(5, 7)"></td><td class="tile black-tile" id="(6, 7)"></td><td class="tile white-tile" id="(7, 7)"></td>
</tr>
<tr>
<td class="tile white-tile" id="(0, 6)"></td><td class="tile black-tile" id="(1, 6)"></td><td class="tile white-tile" id="(2, 6)"></td><td class="tile black-tile" id="(3, 6)"></td>
<td class="tile white-tile" id="(4, 6)"></td><td class="tile black-tile" id="(5, 6)"></td><td class="tile white-tile" id="(6, 6)"></td><td class="tile black-tile" id="(7, 6)"></td>
</tr>
<tr>
<td class="tile black-tile" id="(0, 5)"></td><td class="tile white-tile" id="(1, 5)"></td><td class="tile black-tile" id="(2, 5)"></td><td class="tile white-tile" id="(3, 5)"></td>
<td class="tile black-tile" id="(4, 5)"></td><td class="tile white-tile" id="(5, 5)"></td><td class="tile black-tile" id="(6, 5)"></td><td class="tile white-tile" id="(7, 5)"></td>
</tr>
<tr>
<td class="tile white-tile" id="(0, 4)"></td><td class="tile black-tile" id="(1, 4)"></td><td class="tile white-tile" id="(2, 4)"></td><td class="tile black-tile" id="(3, 4)"></td>
<td class="tile white-tile" id="(4, 4)"></td><td class="tile black-tile" id="(5, 4)"></td><td class="tile white-tile" id="(6, 4)"></td><td class="tile black-tile" id="(7, 4)"></td>
</tr>
<tr>
<td class="tile black-tile" id="(0, 3)"></td><td class="tile white-tile" id="(1, 3)"></td><td class="tile black-tile" id="(2, 3)"></td><td class="tile white-tile" id="(3, 3)"></td>
<td class="tile black-tile" id="(4, 3)"></td><td class="tile white-tile" id="(5, 3)"></td><td class="tile black-tile" id="(6, 3)"></td><td class="tile white-tile" id="(7, 3)"></td>
</tr>
<tr>
<td class="tile white-tile" id="(0, 2)"></td><td class="tile black-tile" id="(1, 2)"></td><td class="tile white-tile" id="(2, 2)"></td><td class="tile black-tile" id="(3, 2)"></td>
<td class="tile white-tile" id="(4, 2)"></td><td class="tile black-tile" id="(5, 2)"></td><td class="tile white-tile" id="(6, 2)"></td><td class="tile black-tile" id="(7, 2)"></td>
</tr>
<tr>
<td class="tile black-tile" id="(0, 1)"></td><td class="tile white-tile" id="(1, 1)"></td><td class="tile black-tile" id="(2, 1)"></td><td class="tile white-tile" id="(3, 1)"></td>
<td class="tile black-tile" id="(4, 1)"></td><td class="tile white-tile" id="(5, 1)"></td><td class="tile black-tile" id="(6, 1)"></td><td class="tile white-tile" id="(7, 1)"></td>
</tr>
<tr>
<td class="tile white-tile" id="(0, 0)"></td><td class="tile black-tile" id="(1, 0)"></td><td class="tile white-tile" id="(2, 0)"></td><td class="tile black-tile" id="(3, 0)"></td>
<td class="tile white-tile" id="(4, 0)"></td><td class="tile black-tile" id="(5, 0)"></td><td class="tile white-tile" id="(6, 0)"></td><td class="tile black-tile" id="(7, 0)"></td>
</tr>
</table>
</div>
<div class="reset-button"><input type="button" value="New Game (Reset)" onclick = gameStart()></div>
<break></break>
<h2 class="results"></h2>
</body>
</html>