forked from andyjdavis/MandarinMojo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.52 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
<html>
<head>
<meta charset="utf-8">
<title>MandarinMojo.com</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<form action="game.html" method="get">
Traditional or simplified?<br>
<input name="traditional" type="radio" value="0" checked="checked"/>Simplified<br />
<input name="traditional" type="radio" value="1" />Traditional<br />
Question format<br>
<!--<input name="format" type="radio" value="1" checked="checked"/>English<br />
<input name="format" type="radio" value="0" />Pinyin<br />
<input name="format" type="radio" value="2" />English and Pinyin<br />-->
<input type="checkbox" name="English" value="1" checked> English<br>
<input type="checkbox" name="Pinyin" value="1" checked> Pinyin<br>
<input type="checkbox" name="Audio" value="1" checked> Audio<br>
Tone representation<br>
<input name="tone" type="radio" value="0" checked="checked"/>zhè<br />
<input name="tone" type="radio" value="1" />zhe4<br />
<br />Use the arrow keys to move
<h3>Recent Changes</h3>
<ul>
<li>Jan 13 - On the map, press h to view your high scores. These are not currently saved but that is coming.</li>
<li>Jan 20 - Added a new speech generator. Press s in an arena to switch between speech generators.</li>
<li>Jan 20 - You can now get a few wrong before failing the arena to make the game more forgiving.</li>
<li>Jan 30 - Added stars you can collect to regain lost health.</li>
<li>Mar 14 - Made the revision queue smarter.</li>
</ul>
<br /><input type="submit" value="Play" class="myButton">
</form>
</body>
</html>