-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnumbers.html
27 lines (26 loc) · 1022 Bytes
/
numbers.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
<!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" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Latin Vocab</title>
<script type="text/javascript" src="build.js"></script>
<script type="text/javascript" src="numbers.js"></script>
</head>
<body>
<p><b>Please input your answers and press "Enter" to check them.</b></p>
<hr />
<table id="numtable">
</table>
<hr />
<form action="numbers.html" method="get">
Quiz numbers from
<select name="english">
<option value="latin">Latin to English</option>
<option value="ordered">English to Latin, in order</option>
<option value="random">English to Latin, randomized</option>
</select>
<input type="submit" value="Quiz" />
</form>
<p><a href="index.html">Return to Main Page</a></p>
</body>
</html>