summaryrefslogtreecommitdiff
path: root/index.html
blob: cac22038ae8ab976b60eebab1621453a0b98fea9 (plain)
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
<!doctype html>
<html>
  <head>
    <title>Learn Chinese Characters</title>
    <meta charset="utf-8">
    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
    <script src="characters.js"></script>
    <script src="index.js"></script>
    <link rel="stylesheet" href="style.css" />
  </head>
  <body>
    <div id="content">
      <h2 id="score">100.00%</h2>
      <h2 id="level">Level 1</h2>
      <h1 id="current-character"></h1>

      <span style="width: 300px; display: block;">
        <input id="pinyin-input" type="text">
      </span>
      
      <span id="hint-span">
        <button id="hint-button">Hint</button>
        <span id="hint">?</span>
      </span>
      <br>
      <button id="reset-button">Reset</button>
      <br>
      
      <label>Level</label>
      <select id="level-select">
      </select>
      <br>

      <label>Mode</label>
      <select id="mode-select">
        <option value="newchars">Level Characters Only</option>
        <option value="allchars">All Characters Up To Level</option>
      </select>
      <p> <b>Tips:</b> This game uses numbered pinyin, so for instance you would write '你' as 'ni3'. Additionally, 'ü' is written with as 'v'.</p>
    </div>
  </body>
</html>