-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
28 lines (28 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JsBlab examples</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="container p-4">
<h1>JS Utils</h1>
<p class="lead">
An easy-to-use JavaScript module library of chess components and utilities.
</p>
<hr class="hr">
<h5>Examples</h5>
<ul>
<li><a href="./examples/san-moves-table.html">HTML Table of Standard Algebraic Notation (SAN) Moves</a></li>
<li><a href="./examples/san-moves-inline.html">Inline Standard Algebraic Notation (SAN) Moves</a></li>
<li><a href="./examples/rav-moves-table.html">HTML Table of Recursive Annotation Variation (RAV) Moves</a></li>
<li><a href="./examples/rav-moves-inline.html">Inline Recursive Annotation Variation (RAV) Moves</a></li>
<li><a href="./examples/timer-table.html">Timer</a></li>
<li><a href="./examples/moves-metadata-table.html">Moves Metadata</a></li>
<li><a href="./examples/chessboard-editor.html">Chessboard Editor</a></li>
</ul>
</div>
</body>
</html>