forked from CraftyMuffin/ChessTrainig
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheasy_puzzle.html
More file actions
21 lines (17 loc) · 731 Bytes
/
Copy patheasy_puzzle.html
File metadata and controls
21 lines (17 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<title>Задачи</title>
<link rel="shortcut icon" href="https://i.imgur.com/fcWSaD9.png">
<link rel="stylesheet" href="css/board.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/chessboard-js/1.0.0/chessboard-1.0.0.min.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/chess.js/0.11.0/chess.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/chessboard-js/1.0.0/chessboard-1.0.0.min.js"></script>
</head>
<body>
<div id="board" class="board"></div>
<script src="js/board.js"></script>
<script>createChessBoard();</script>
</body>
</html>