mirror of
https://github.com/neogeek23/neogeek23.github.io.git
synced 2026-02-04 02:48:17 +00:00
19 lines
688 B
HTML
19 lines
688 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Chess Engine</title>
|
|
<link rel="stylesheet" href="css/chessboard-0.3.0.min.css">
|
|
<script src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
crossorigin="anonymous"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/chess.js/0.10.2/chess.js"></script>
|
|
<script src="js/chessboard-0.3.0.js"></script>
|
|
<script src="js/ChessEngine.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="board" style="width: 400px"></div>
|
|
<div id="hiddenBoard" style="display: none"></div>
|
|
</body>
|
|
</html>
|