-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquizger.html
84 lines (84 loc) · 4.71 KB
/
quizger.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
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<head>
<title>English Quiz</title>
<link rel="stylesheet" href="quiz.css">
</head>
<body>
<form id="quizform">
<h1>German Quiz</h1>
<div class="question">
<p>1. What is the correct translation for "telephone"?</p>
<label><input type="radio" name="q1" value="a"> a. Telefone</label><br>
<label><input type="radio" name="q1" value="b"> b. Telefon</label><br>
<label><input type="radio" name="q1" value="c"> c. Tele</label><br>
<label><input type="radio" name="q1" value="d"> d. Callfone</label>
</div>
<div class="question">
<p>2. What is the correct translation for "Good Morning"?</p>
<label><input type="radio" name="q2" value="a"> a. Good Mornin</label><br>
<label><input type="radio" name="q2" value="b"> b. Guten Morg</label><br>
<label><input type="radio" name="q2" value="c"> c. Guten Morgan</label><br>
<label><input type="radio" name="q2" value="d"> d. Guten Morgen</label>
</div>
<div class="question">
<p>3. What is the correct translation for "Good night"?</p>
<label><input type="radio" name="q3" value="a"> a. Gute Nacht</label><br>
<label><input type="radio" name="q3" value="b"> b. Gute Neigh</label><br>
<label><input type="radio" name="q3" value="c"> c. Guten Nacht</label><br>
<label><input type="radio" name="q3" value="d"> d. Gute Neigh</label>
</div>
<div class="question">
<p>4. What is the correct translation for "hello"?</p>
<label><input type="radio" name="q4" value="a"> a. Heyi</label><br>
<label><input type="radio" name="q4" value="b"> b. Heio</label><br>
<label><input type="radio" name="q4" value="c"> c. Hai</label><br>
<label><input type="radio" name="q4" value="d"> d. Hallo</label>
</div>
<div class="question">
<p>5. What is the correct translation for "boy"?</p>
<label><input type="radio" name="q5" value="a"> a. Boi</label><br>
<label><input type="radio" name="q5" value="b"> b. Boya</label><br>
<label><input type="radio" name="q5" value="c"> c. Junge</label><br>
<label><input type="radio" name="q5" value="d"> d. Junk</label>
</div>
<div class="question">
<p>6. What is the correct translation for "life"?</p>
<label><input type="radio" name="q6" value="a"> a. Leiben</label><br>
<label><input type="radio" name="q6" value="b"> b. Lebe</label><br>
<label><input type="radio" name="q6" value="c"> c. Lief</label><br>
<label><input type="radio" name="q6" value="d"> d. Leben</label>
</div>
<div class="question">
<p>7. What is the correct translation for "human"?</p>
<label><input type="radio" name="q7" value="a"> a. menschlich</label><br>
<label><input type="radio" name="q7" value="b"> b. hooman</label><br>
<label><input type="radio" name="q7" value="c"> c. mene</label><br>
<label><input type="radio" name="q7" value="d"> d. huumn</label>
</div>
<div class="question">
<p>8. What is the correct translation for "dog"?</p>
<label><input type="radio" name="q8" value="a"> a. Hound</label><br>
<label><input type="radio" name="q8" value="b"> b. Hund</label><br>
<label><input type="radio" name="q8" value="c"> c. Hounde</label><br>
<label><input type="radio" name="q8" value="d"> d. Doge</label>
</div>
<div class="question">
<p>9. What is the correct translation for "bye"?</p>
<label><input type="radio" name="q9" value="a"> a. Sayonarra</label><br>
<label><input type="radio" name="q9" value="b"> b. Hola</label><br>
<label><input type="radio" name="q9" value="c"> c. Tsuss</label><br>
<label><input type="radio" name="q9" value="d"> d. Tschüss</label>
</div>
<div class="question">
<p>10. What is the correct translation for "multilingual"?</p>
<label><input type="radio" name="q10" value="a"> a. Du bist mehrsprachig</label><br>
<label><input type="radio" name="q10" value="b"> b. Du bist midsthig</label><br>
<label><input type="radio" name="q10" value="c"> c. Du bist mehrenar</label><br>
<label><input type="radio" name="q10" value="d"> d. Du bist misthchiwig</label>
</div>
<button class="buton" type="button" onclick="checkAnswers()">Submit</button>
</form>
<div id="results" class="results"></div>
<script src="quizeng.js"></script>
</body>
</html>