forked from JoshuaGrams/steno-jig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
learn-keyboard.html
98 lines (94 loc) · 3.8 KB
/
learn-keyboard.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Learn the steno keyboard</title>
<link href="styles/base.css" rel="stylesheet" type="text/css" />
<script src="scripts/utils/theme.mjs" type="module"></script>
<link href="styles/style.less" rel="stylesheet/less" type="text/css" />
<script src="scripts/libs/less.js"></script>
<script src="scripts/libs/chart.js"></script>
<script src="scripts/libs/chartjs-plugin-datalabels.js"></script>
<script src="scripts/libs/jquery-3.6.0.min.js"></script>
<script src="scripts/libs/less.js"></script>
</head>
<body>
<div class="wrapper">
<div id="form">
<h1>Learn the Steno Keyboard</h1>
<p style="text-align: center">
<a href="raw-steno-instructions.html"
>How to get raw steno output</a
>
</p>
<a href="index.html">
<div class="clickable-form-section center" id="word-drill">
<h2>Go back</h2>
</div>
</a>
<div class="form-section">
<div class="caption">Pick a lesson and hint settings</div>
<br />
<div name="hints" class="radio-buttons--row">
<label>
<input
id="hints"
type="radio"
name="hints"
value="true"
checked
/>
Show hints
</label>
<label>
<input
id="hints"
type="radio"
name="hints"
value="fail-1"
checked
/>Hint on fail</label
>
<label
><input
id="hints"
type="radio"
name="hints"
value="fail-2"
checked
/>Hint on failed twice</label
>
<label
><input
id="hints"
type="radio"
name="hints"
value="fail-3"
checked
/>Hint on failed three times</label
>
<label
><input
id="hints"
type="radio"
name="hints"
value="false"
checked
/>No hints</label
>
</div>
<form id="selectDrill" action="exersize/keyboard.html">
<br />
<select title="drill" name="drill"></select>
<button
type="submit"
class="form-section__submit-button"
></button>
</form>
</div>
</div>
</div>
<script type="module" src="js/learn-keyboard.mjs"></script>
</body>
</html>