-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (26 loc) · 914 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JsChess</title>
<link href="styles.css" rel="stylesheet" type="text/css">
<script type="text/javascript"> if (!window.console) console = {log: function() {}}; </script>
</head>
<body>
<header>
<h3>Js Chess</h3>
</header>
<div id="FenInDiv">
Fed:<br/>
<input type="text" id="fenIn"/>
<button type="button" id="SetFen">Set Position</button>
</div>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/defs.js"></script>
<script src="js/movegen.js"></script>
<script src="js/board.js"></script>
<script src="js/gui.js"></script>
<script src="js/io.js"></script>
<script src="js/main.js"></script>
</body>
</html>