-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (67 loc) · 3.12 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja">
<head>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<meta name="robots" content="index,follow" />
<meta name="author" content="woonie" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" href="./karuta.css">
<link rel="icon" type="image/icon" href="./images/favicon.ico">
<title>
Karuta Flashcards かるた暗記
</title>
</head>
<body>
<h1>Karuta Flashcards かるた暗記</h1>
<p><a target="_blank" href="instructions.html">Instructions</a></p>
<p id="choose">
<input type="checkbox" class = "all" id="all" checked>all<br/>
<input type="checkbox" class = "notAll" id="one">むすめふさほせ
<input type="checkbox" class = "notAll" id="two">うつしもゆ<br/>
<input type="checkbox" class = "notAll" id="i">い
<input type="checkbox" class = "notAll" id="chi">ち
<input type="checkbox" class = "notAll" id="hi">ひ
<input type="checkbox" class = "notAll" id="ki">き<br/>
<input type="checkbox" class = "notAll" id="ha">は
<input type="checkbox" class = "notAll" id="ya">や
<input type="checkbox" class = "notAll" id="ka">か
<input type="checkbox" class = "notAll" id="yo">よ<br/>
<input type="checkbox" class = "notAll" id="mi">み
<input type="checkbox" class = "notAll" id="ta">た
<input type="checkbox" class = "notAll" id="ko">こ
<input type="checkbox" class = "notAll" id="wa">わ
<input type="checkbox" class = "notAll" id="o">お
<input type="checkbox" class = "notAll" id="na">な
<input type="checkbox" class = "notAll" id="a">あ<br/>
<input type="checkbox" class = "notAll" id="bookmark">Custom List
</p>
<p>
<input type="button" onclick="test()" value="next card">
<input type="button" onclick="revealAnswer()" value="reveal answer">
<input type="button" onClick="back()" value="previous card">
<input type="button" onclick="reset()" value="reset">
</p>
<p>
<text id = "questionNumber"></text>
<text id = "cardValue"></text>
<text id = "ans"></text>
<text id = "endOfQuiz"></text>
</p>
<img id= "fuda" />
<p>
Custom List: <input type="button" onClick="addCard()" value="add current card">
<input type="button" onClick="removeCard()" value="remove current card">
<input type="button" id="showlist" onClick="showSaved()" value="show/hide list"><br/>
<text id = "customList"></text>
<br/>
<text id = "customListMessage"> </text>
<br/>
</p>
<p class = "footer">
(fuda images by <a href="http://karuta.org"><img src="./images/banner2.png" /></a>)<br/>
created by <a href="https://github.com/woonie/">woonie</a> ©2013-2018 (v1.1). <a href="https://github.com/woonie/karuta_anki">Github repo</a>
</p>
<script type="text/javascript" src="karuta.js"></script>
</body>
</html>