-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
32 lines (26 loc) · 999 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
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="css/chessboard-1.0.0.min.css">
<title>Chess game</title>
</head>
<body>
<div class="container">
<h1>Magamed Chess Game</h1>
<div class="board" id="board"></div>
<div class="buttons">
<button class="play-again">Play Again</button>
<button class="set-pos">Set Position</button>
<button class="flip-board">Flip Board</button>
</div>
<div id="move-history" class="move-history"></div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="js/chessboard-1.0.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/chess.js/0.10.3/chess.min.js"></script>
<script src="script.js"></script>
</body>
</html>