-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
40 lines (33 loc) · 1.4 KB
/
index.htm
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
<!DOCTYPE html>
<html>
<head>
<title>沖縄語辞典オンライン</title>
<link href="style.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width,initial-scale=1">
</head>
<body onload="readFile()">
<header>
<h1>沖縄語辞典オンライン</h1>
<p id="license"><a href="https://mmsrv.ninjal.ac.jp/okinawago/">国立国語研究所「沖縄語辞典データ集」</a>を改変して作成 <a
href="https://creativecommons.org/licenses/by/4.0/deed.ja">CC 4.0 BY</a></p>
<form name="search" onsubmit="return false;">
<input type="text" name="field" id="field" placeholder="sirabijuN / しらべる">
<button id="searchbutton">検索</button><br>
<input type="checkbox" name="sczFazzy" checked id="sczFazzyId"><label
for="sczFazzyId">szcとşz̧çを区別しない</label>
<input type="checkbox" name="glottalFazzy" checked id="glottalFazzyId"><label
for="glottalFazzyId">'とʔを区別しない</label>
</form>
</header>
<section>
<h2>検索結果</h2>
<div id="result"></div>
</section>
<section>
<h2>検索履歴</h2>
<div id="history"></div>
</section>
<script src="script.js"></script>
</body>
</html>