mirror of
https://github.com/ZetaKebab/japanese-conjugation-drill.git
synced 2025-01-14 22:08:44 +00:00
91 lines
1.9 KiB
HTML
91 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="drill.css" type="text/css" media="screen"/>
|
|
<link href="https://fonts.googleapis.com/css?family=Amaranth" rel="stylesheet">
|
|
<script type="text/ecmascript" src="//code.jquery.com/jquery-3.1.1.min.js"></script>
|
|
<script type="text/ecmascript" src="drill.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="quizSection">
|
|
|
|
<div class="questionOuter">
|
|
<div id="question"></div>
|
|
</div>
|
|
|
|
<div id="input">
|
|
<form action="javascript:processAnswer()">
|
|
<input placeholder="答え" autocomplete="off" id="answer">
|
|
</form>
|
|
</div>
|
|
|
|
<div id="proceed">
|
|
|
|
<form style="float: right" action="javascript:proceed()">
|
|
<input type="submit" value="Next">
|
|
</form>
|
|
|
|
<div id="response">
|
|
</div>
|
|
|
|
<div id="message">
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="history">
|
|
</div>
|
|
|
|
</div>
|
|
<!--
|
|
<h2>Conjugator</h2>
|
|
|
|
<div class="entry"><input id="input" onkeypress="showForms(event)"/></div>
|
|
|
|
<h3>Verb</h3>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Word</th>
|
|
<td id="word">
|
|
</tr>
|
|
<tr>
|
|
<th>Masu form</th>
|
|
<td id="masu">
|
|
</tr>
|
|
<tr>
|
|
<th>Te form</th>
|
|
<td id="te">
|
|
</tr>
|
|
<tr>
|
|
<th>Present negative</th>
|
|
<td id="present_negative">
|
|
</tr>
|
|
<tr>
|
|
<th>Past negative informal</th>
|
|
<td id="past_negative_informal">
|
|
</tr>
|
|
<tr>
|
|
<th>Past informal</th>
|
|
<td id="past_informal">
|
|
</tr>
|
|
</table>
|
|
|
|
<h3>Adjective</h3>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Present negative form</th>
|
|
<td id="present_negative_adj">
|
|
</tr>
|
|
<tr>
|
|
<th>Past affirmative form</th>
|
|
<td id="past_affirmative_adj">
|
|
</tr>
|
|
</table>
|
|
-->
|
|
</body>
|
|
</html>
|