-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (38 loc) · 973 Bytes
/
Copy pathindex.html
File metadata and controls
46 lines (38 loc) · 973 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>test</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin-top: 50px;
}
.kana-display {
font-size: 5em;
margin: 20px;
}
.controls {
margin-top: 20px;
}
.checkbox-label {
font-size: 1.2em;
margin: 10px;
}
</style>
</head>
<body>
<div class="kana-display" id="kanaDisplay">あ</div>
<div class="controls">
<label class="checkbox-label">
<input type="checkbox" id="autoPlayVoice"> Auto Play Voice
</label>
<label class="checkbox-label">
<input type="checkbox" id="autoShowRomaji"> Auto Show Romaji
</label>
</div>
<div id="romajiDisplay" style="display: none;">a</div>
<script src="script.js"></script>
</body>
</html>