-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (49 loc) · 1.53 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vocab-Kanji</title>
<link rel="stylesheet" type="text/css" href="static/main.css" />
<link rel="icon" type="image/png" href="static/icon.png" />
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script type="text/javascript" src="static/util.js"></script>
<script type="text/javascript" src="static/main.js"></script>
</head>
<body>
<div id="charSel">
<div id="charSelUpper" class="centerize">
<h1>Vocab-Kanji</h1>
<div>
<form id="formChar">
<input type="text" id="txtChar"/>
</form>
<select id="selSearch">
<option value="btnX" selected="selected">None</option>
<option value="btnJisho">Jisho</option>
<option value="btnWWWJDIC">WWWJDIC</option>
<option value="btnWikiE">Wiktionary</option>
</select>
</div>
<a href="settings.html" id="settingsLink" title="Settings"></a>
</div>
<div id="charSelLower">
<div id="bookList"></div>
<div class="clear"></div>
<div id="bookChar"></div>
</div>
</div>
<div id="charDisp">
<div id="charDispInner">
<div class="big-char" id="theChar"> </div>
</div>
<div id="charDesc">
<div id="wordList" class="desc-wrapper"></div>
<div id="clearList" class="clear"></div>
</div>
</div>
<div id="extWeb">
<iframe id="extFrame" name="extFrame" src=""></iframe>
</div>
</body>
</html>