-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchess.html
More file actions
30 lines (30 loc) · 1.14 KB
/
chess.html
File metadata and controls
30 lines (30 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chess Game</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/chessboardjs@0.0.1/www/css/chessboard.css">
<link rel="stylesheet" href="chess/style.css">
</head>
<body>
<a href="arcade/index.html" class="back-link">Back to Main Site</a>
<p id="elo-display"></p>
<div id="controls">
<label for="ai-elo">AI ELO:</label>
<select id="ai-elo">
<option value="800">800</option>
<option value="1200" selected>1200</option>
<option value="1600">1600</option>
<option value="2000">2000</option>
</select>
<button id="restart">Restart</button>
</div>
<div id="board"></div>
<p id="result"></p>
<script src="https://cdn.jsdelivr.net/npm/chessboardjs@0.0.1/www/js/jquery-1.10.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chessboardjs@0.0.1/www/js/chess.js"></script>
<script src="chess/lib/chessboard.js"></script>
<script src="chess/script.js"></script>
</body>
</html>