-
Notifications
You must be signed in to change notification settings - Fork 0
/
openquestions.html
87 lines (68 loc) · 3.11 KB
/
openquestions.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
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Open Question Quiz - 1</title>
<link rel="stylesheet" type="text/css" href="css/openquestions.css">
<script src = "js/openquestions.js" async></script>
<link rel="icon" href="imgs/swfl.png">
</head>
<body>
<header>
<h1>Write it in Swedish</h1>
<form style="display: inline" action="Quiz.html" method="get">
<button>Quiz Home</button>
</form>
<!-- Start of WebFreeCounter Code -->
<a href="https://www.webfreecounter.com/" target="_blank"><img src="https://www.webfreecounter.com/hit.php?id=grnqdnx&nd=7&style=5" border="0" alt="web counter" style="float: right; width: 190px; height: 25px;"></a>
<!-- End of WebFreeCounter Code -->
</header>
<a href="Quiz.html" class="previous">« Back to Quiz Home</a>
<a href="openquestions2.html" class="next">Go to Quiz 2 »</a>
<br>
<p>Answer the questions in Swedish. Remember the 1st letter is always a <b>"capital"</b> letter, otherwise it will be marked as incorrect. There is no "dot" after the answers. If it the picture shows at a place, use "I" or "På" as well. For example picture shows: At work, the answer is: På arbetet. Or when a note is hanging on the wall and I have circled it on the picture, the answer is "Anteckningarna hänger på väggen". Click or Hover over the image to make them bigger.</p>
<b>Good Luck!</b>
<br>
<h2>Swedish Open Questions Quiz - 1</h2>
<br>
<form id = "quiz" name = "quiz">
<label> <b>Q01:</b>
<img src="imgs/boring.jpg" alt="boring" />
<input id = "textbook1" type = "text" name ="question1"></label>
<label><b>Q02:</b>
<img src="imgs/one.png" alt="One" />
<input id = "textbook2" type = "text" name ="question2"></label><br>
<label><b>Q03:</b>
<img src="imgs/horsy.JPG" alt="horse" />
<input id = "textbook3" type = "text" name ="question3"></label>
<label><b>Q04:</b>
<img src="imgs/family.png" alt="family" />
<input id = "textbook4" type = "text" name ="question4"></label> <br>
<label><b>Q05:</b>
<img src="imgs/hot.JPG" alt="hot" />
<input id = "textbook5" type = "text" name ="question5"></label>
<label><b>Q06:</b>
<img src="imgs/strong.JPG" alt="strong" />
<input id = "textbook6" type = "text" name ="question6"></label><br>
<label><b>Q07:</b>
<img src="imgs/Howareyou.jpg" alt="Howareyou" />
<input id = "textbook7" type = "text" name ="question7"></label>
<label><b>Q08:</b>
<img src="imgs/pink.png" alt="pink" />
<input id = "textbook8" type = "text" name ="question8"></label> <br>
<label><b>Q09:</b>
<img src="imgs/at_hospital.jpg" alt="at_hospital" />
<input id = "textbook9" type = "text" name ="question9"></label>
<label><b>Q10:</b>
<img src="imgs/lamp_desk.JPG" alt="lamp_desk" />
<input id = "textbook10" type = "text" name ="question10"></label> <br>
<br>
<input id = "button" type = "button" value = "I'm finished!" onclick="check();">
</form>
<div id = "after_submit">
<p id = "message"></p>
<p id = "number_correct"></p>
<p><img src="." id = "picture" alt="gif"></p>
</div>
</body>
</html>