-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (55 loc) · 1.96 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Columbium41">
<meta name="keywords" content="HTML, CSS, JavaScript, TicTacToe, Minimax, CPU">
<title>TicTacToe</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="png" href="icon.png">
<script src="script.js" defer></script>
</head>
<body>
<!-- Menu Interface -->
<div id="menu">
<h1>TicTacToe</h1>
<h4>Select a difficulty</h4>
<button type="button" class="difficulty-button no-select">Easy</button>
<button type="button" class="difficulty-button no-select">Normal</button>
<button type="button" class="difficulty-button no-select">Hard</button>
<button type="button" class="difficulty-button no-select">Impossible</button>
</div>
<!-- Game Container -->
<div id="game">
<div id="game-over-overlay">
<!-- Exit Button -->
<button type="button" id="return-button" class="no-select">Return to Menu</button>
</div>
<!-- Game Information -->
<div id="info">
<p id="cpu-info"></p>
<p id="status"></p>
</div>
<!-- Game Interface -->
<table id="test">
<tr>
<td><p class="no-select"></p></td>
<td><p class="no-select"></p></td>
<td><p class="no-select"></p></td>
</tr>
<tr>
<td><p class="no-select"></p></td>
<td><p class="no-select"></p></td>
<td><p class="no-select"></p></td>
</tr>
<tr>
<td><p class="no-select"></p></td>
<td><p class="no-select"></p></td>
<td><p class="no-select"></p></td>
</tr>
</table>
</div>
</body>
</html>