-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (38 loc) · 1.29 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
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>blunder puzzles</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="stylesheet" href="./styles/cm-chessboard.css"/>
<link rel="stylesheet" href="./styles.css">
</head>
<body id="bodyId">
<script src="chess.js"></script>
<h1>blunder puzzles</h1>
<span id="puzzleIdP">LOADING PUZZLE</span>
<span>-</span>
<span id="puzzleText"></span>
<div id="boardContainer">
<div id="board" class=""></div>
<div id="statusBar">
<p id="status"></p>
</div>
<div id="scores">
<p id="correctText">correct: 0</p>
<p id="wrongText">wrong: 0</p>
</div>
</div>
<div class="buttonTray" id="loseButtons">
<button id="retryButton">retry</button>
<button id="tellSolution">solution</button>
<button id="loseNextButton">next</button>
</div>
<div class="buttonTray" id="winButtons">
<button id="winNextButton">next</button>
</div>
<script src="./index.js" type="module"></script>
</body>
</html>