-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (27 loc) · 992 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chess</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<span class="title text">♚ <strong>Chess Game</strong> ♔</span>
<div id="chess-board"></div>
<span class="text">Depth Level: <span id="depth-level">3</span>
<input id="depth-level-input" type="range" value="3" min="1" max="5" step="1" onchange="document.getElementById('depth-level').innerText = this.value">
</span>
</div>
</body>
<script src="lib/p5.js"></script>
<script src="lib/p5.dom.js"></script>
<script src="lib/p5.sound.js"></script>
<script src="chess/pieces.js"></script>
<script src="chess/board.js"></script>
<script src="chess/sketch.js"></script>
<script src="ai/main.js"></script>
<script src="ai/minimax.js"></script>
<script src="ai/BoardData.js"></script>
</html>