-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 1.05 KB
/
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">
<title>Chess, powered by Stockfish and p5</title>
<link rel="stylesheet" href="libraries/css/chessboard-0.3.0.css"/>
<link rel="stylesheet" href="libraries/css/common.css"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/chess.js/0.10.2/chess.js"></script>
<script src="libraries/js/chessboard.js"></script>
<script src="https://code.jquery.com/jquery-1.10.1.js"></script>
<script src="node_modules/stockfish/src/stockfish.js"></script>
</head>
<body>
<div class="gamearea">
<div id="board" class="chessboard"></div>
<div id="score" class="scoreboard">
<div id="head">
<span>Sl. No.</span> <span>White</span> <span>Black</span>
</div>
<div id="body">
<div id="row">
<!--<div id="slno"></div>
<div id="whiteMove"></div>
<div id="blackMove"></div>-->
</div>
</div>
</div>
</div>
</body>
<script src="src/main/webapp/sketch.js"></script>
</html>