forked from denialromeo/4462-chess-problems
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
22 lines (21 loc) · 772 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
<!doctype html>
<html>
<head>
<title>Chess Puzzle Player</title>
</head>
<body>
<center>
<h2 id="problem-title" style="font-family:Helvetica"></h2>
<div id="board" style="width:436px;height:0;padding-bottom:436px"></div>
<br>
<input type="button" id="hint-btn" value="Hint" />
<input type="button" id="next-btn" style="display:none" value="Next" />
</center>
<center>
<p style="font-family:Helvetica">
Above is problem <span id="problem-num"></span> from Polgár's book. <a id="problem-link" target="_self">Here</a> is a link to return to it in the future.
</p>
</center>
<script src="dist/chess-puzzle-player.js"></script>
</body>
</html>