-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (60 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TicTacToe</title>
<link rel="stylesheet" href="./css/style.css" />
<!-- Foreign libraries -->
<script type="text/javascript" src="./js/vanilla-tilt.js"></script>
<script type="text/javascript" src="./js/particles.js"></script>
<!-- Local JavaScript logic -->
<script type="module" src="./js/effects.js"></script>
<script type="module" src="./js/game.js"></script>
<script type="module" src="./js/web.js"></script>
</head>
<body>
<div id="message-cover">This text should be modified by JavaScript</div>
<div id="particles"></div>
<div id="cover">
<label class="guide">click anywhere to begin</label>
</div>
<div class="wrapper">
<div id="board" class="container">
<div class="cell-wrapper">
<button class="cell" data-position="1"></button>
</div>
<div class="cell-wrapper">
<button class="cell" data-position="2"></button>
</div>
<div class="cell-wrapper">
<button class="cell" data-position="3"></button>
</div>
<div class="cell-wrapper">
<button class="cell" data-position="4"></button>
</div>
<div class="cell-wrapper">
<button class="cell" data-position="5"></button>
</div>
<div class="cell-wrapper">
<button class="cell" data-position="6"></button>
</div>
<div class="cell-wrapper">
<button class="cell" data-position="7"></button>
</div>
<div class="cell-wrapper">
<button class="cell" data-position="8"></button>
</div>
<div class="cell-wrapper">
<button class="cell" data-position="9"></button>
</div>
</div>
<div class="title-wrapper">
<h1 class="title">Tic-Tac-Toe</h1>
<h3 class="subtitle">
A Minimax with Alpha-beta pruning implementation using JavaScript.
</h3>
</div>
</div>
</body>
</html>