-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (20 loc) · 785 Bytes
/
index.html
File metadata and controls
22 lines (20 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Version Satu</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<link rel="stylesheet" href="css/chessboard.css" />
</head>
<div id="board" style="width: 400px"></div>
<p>Status: <span id="status"></span></p>
<p>FEN: <span id="fen"></span></p>
<p>PGN: <span id="pgn"></span></p>
<script src="js/boardLogic/chessLogic.js"></script>
<script src="js/boardLogic/jsonStuff.js"></script>
<script src="js/boardLogic/jQueryStuff.js"></script>
<script src="js/boardLogic/chessboard.js"></script>
<script src="js/boardLogic/logicLookup.js"></script>
<script src="js/boardLogic/gameLogic.js"></script>
<script src="js/boardLogic/gameStateHandler.js"></script>
</html>