-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (78 loc) · 3.59 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!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>Kana</title>
<link rel="stylesheet" href="styles.css">
<script async src="script.js"></script>
<link rel="icon" href="favicon.ico">
</head>
<body>
<div class="boxes">
<input type="checkbox" id="a" class="box" onclick="onButtonClick(this);">
<label for="a"> a</label>
<input type="checkbox" id="ka" class="box" onclick="onButtonClick(this);">
<label for="ka"> ka</label>
<input type="checkbox" id="sa" class="box" onclick="onButtonClick(this);">
<label for="sa"> sa</label>
<input type="checkbox" id="ta" class="box" onclick="onButtonClick(this);">
<label for="ta"> ta</label>
<input type="checkbox" id="na" class="box" onclick="onButtonClick(this);">
<label for="na"> na</label>
<input type="checkbox" id="ha" class="box" onclick="onButtonClick(this);">
<label for="ha"> ha</label>
<input type="checkbox" id="ma" class="box" onclick="onButtonClick(this);">
<label for="ma"> ma</label>
<input type="checkbox" id="ya" class="box" onclick="onButtonClick(this);">
<label for="ya"> ya</label>
<input type="checkbox" id="ra" class="box" onclick="onButtonClick(this);">
<label for="ra"> ra</label>
<input type="checkbox" id="wa" class="box" onclick="onButtonClick(this);">
<label for="wa"> wa</label>
<input type="checkbox" id="n" class="box" onclick=" onButtonClick(this);">
<label for="n"> n</label>
</div>
<div class="boxes">
<input type="checkbox" id="A" class="box" onclick="onButtonClick(this);">
<label for="A"> A</label>
<input type="checkbox" id="KA" class="box" onclick="onButtonClick(this);">
<label for="KA"> KA</label>
<input type="checkbox" id="SA" class="box" onclick="onButtonClick(this);">
<label for="SA"> SA</label>
<input type="checkbox" id="TA" class="box" onclick="onButtonClick(this);">
<label for="TA"> TA</label>
<input type="checkbox" id="NA" class="box" onclick="onButtonClick(this);">
<label for="NA"> NA</label>
<input type="checkbox" id="HA" class="box" onclick="onButtonClick(this);">
<label for="HA"> HA</label>
<input type="checkbox" id="MA" class="box" onclick="onButtonClick(this);">
<label for="MA"> MA</label>
<input type="checkbox" id="YA" class="box" onclick="onButtonClick(this);">
<label for="YA"> YA</label>
<input type="checkbox" id="RA" class="box" onclick="onButtonClick(this);">
<label for="RA"> RA</label>
<input type="checkbox" id="WA" class="box" onclick="onButtonClick(this);">
<label for="WA"> WA</label>
<input type="checkbox" id="N" class="box" onclick="onButtonClick(this);">
<label for="N"> N</label>
</div>
<div class="boxes">
<input type="checkbox" id="Accents" class="box" onclick="onButtonClick(this);">
<label for="Accents"> Accents</label>
</div>
<br>
<br>
<div class="kana" id="kana">
<!--random kana-->
</div>
<div class="input">
<form onsubmit="onSubmit(); return false;" autocomplete="off">
<input type="text" id="input" placeholder="Entrez le son de ce kana">
</form>
<input type="submit" value="Valider" onclick="onSubmit();">
</div>
<div class="score" onclick="triggerAction();"></div>
</body>
</html>