-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (71 loc) · 3.73 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description"
content="Enhance your chess notation skills with the Chess Coordinate Trainer. Available online and soon on Android, this trainer offers two modes: Notation Training and Black or White Training. Perfect for intermediate players, flip the board, and test your skills against the clock. Visit www.chesscoordinatetrainer.com now!">
<meta name="keywords"
content="Chess Coordinate Trainer, chess notation, chess training, chessboard, chess app, notation training, black and white training, chess coordinates, timed mode, improve chess skills">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chess Coordinate Trainer - Improve Your Chess Notation Skills</title>
<script type="application/javascript" src="skiko.js"></script>
<script type="application/javascript" src="composeApp.js"></script>
<link rel="icon" href="icon-round.png">
</head>
<body>
<canvas id="ComposeTarget"></canvas>
<div style="position: absolute; padding-left: -100%; color: white">
<p>
Chess notation is something that every advanced chess player should know. Since we live in a digital age, using
a software for this is a reasonable idea. Me, being a passionate programmer and also intermediate type of chess
player, has developed a Chess Coordinate Trainer. Its currently available for web and the android version will
be published very soon. You can find the web version under www.chesscoordinatetrainer.com.
</p>
<h2>Modes</h2>
<p>There are 2 modes: </p>
<ul>
<li>Notation Training</li>
<li>Black and White Training</li>
</ul>
<p>
If you wanna learn the notations of the chessboard this is the right place to start. You can choose if you want
to learn square notation and/or ranks and/or files. Of course you can flip the board to learn the coordinates
from every perspective.
</p>
<p>If you feel comfortable already, you can start the timed mode. Try to hit as many correct notations as possible
in a certain amount of time.
</p>
<p>Black or White Training This mode is about knowing what square notation has which color on the chess board.</p>
<p>Other Ideas?
You got more ideas on how to improve the Chess Coordinate Trainer? Let me know by hitting the feedback button in
the app!
</p>
<p>www.chesscoordinatetrainer.com, Cheers!</p>
</div>
<script id="firebaseScript" type="module">
// Import the functions you need from the SDKs you need
import { initializeApp } from "https://www.gstatic.com/firebasejs/10.8.1/firebase-app.js";
import { getAnalytics } from "https://www.gstatic.com/firebasejs/10.8.1/firebase-analytics.js";
// TODO: Add SDKs for Firebase products that you want to use
// https://firebase.google.com/docs/web/setup#available-libraries
// Your web app's Firebase configuration
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
const firebaseConfig = {
apiKey: "AIzaSyDQgkkSO4f4tp54GDI4tr-GSTHjdTKkKYo",
authDomain: "chessapp-69147.firebaseapp.com",
projectId: "chessapp-69147",
storageBucket: "chessapp-69147.appspot.com",
messagingSenderId: "354651847702",
appId: "1:354651847702:web:7416afa9bb544ac8f88937",
measurementId: "G-NQ305MTYHQ"
};
if (window.location.hostname !== "localhost" && window.location.hostname !== "127.0.0.1") {
// Initialize Firebase
const app = initializeApp(firebaseConfig);
const analytics = getAnalytics(app);
} else {
console.log("Firebase is not available on localhost. Skipping initialization.");
}
</script>
</body>
</html>