-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGMPQuiz.html
More file actions
72 lines (67 loc) · 2.64 KB
/
GMPQuiz.html
File metadata and controls
72 lines (67 loc) · 2.64 KB
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
<!DOCTYPE html>
<html>
<head>
<title>OSI Questions</title>
<link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/pure-min.css" integrity="sha384-nn4HPE8lTHyVtfCBi5yW9d20FjT8BJwUXyWZT9InLYax14RDjBj46LmSztkmNP9w" crossorigin="anonymous">
<style>
font-family: helvetica;
text-align: centre;
body {
font-family: helvetica;
text-align: centre;
}
form
{
border: 5px solid red;
color: black;
font-family: helvetica;
text-align: center;
}
</style>
</head>
<body>
<h1> OSI Site Induction </h1>
<form class="pure-form" action="log_results_GMP.php" method="post">
<fieldset>
<br><br>
Q1. What do the letters GMP stand for?
<br><br>
<input type="radio" name="q1" value="A"> A. Great Meat Production <br>
<input type="radio" name="q1" value="B"> B. Good Manufacturing Practices <br>
<input type="radio" name="q1" value="C"> C. Giant Mouse People <br>
<input type="radio" name="q1" value="D"> D. Good Music Program
<br><br>
Q2. When must you wear white disposable PPE?
<br><br>
<input type="radio" name="q2" value="A"> A. Inside the Plant, when working in process <br>
<input type="radio" name="q2" value="B"> B. Going to the Toilet <br>
<input type="radio" name="q2" value="C"> C. Walking around outside <br>
<input type="radio" name="q2" value="D"> D. Driving to work
<br><br>
Q3. Who do you need to consult after you have found a Food Contact Surface that is contaminated after Maintenance has finished working on it?
<br><br>
<input type="radio" name="q3" value="A"> A. Process Control Coordinator <br>
<input type="radio" name="q3" value="B"> B. Supervisor <br>
<input type="radio" name="q3" value="C"> C. Equiptment Operator <br>
<input type="radio" name="q3" value="D"> D. All of the above
<br><br>
Q4. What do we call the accidental addition of an Allergen to Non-Allergen Food?
<br><br>
<input type="radio" name="q4" value="A"> A. Cross Word <br>
<input type="radio" name="q4" value="B"> B. Cross Contact <br>
<input type="radio" name="q4" value="C"> C. Cross Contamination <br>
<input type="radio" name="q4" value="D"> D. Cross Breeding
<br><br>
Q5. Give an example of when you need to wash your hands?
<br><br>
<input type="radio" name="q5" value="A"> A. Toilet <br>
<input type="radio" name="q5" value="B"> B. Touching Dirty Surfaces <br>
<input type="radio" name="q5" value="C"> C. Entering the Plant <br>
<input type="radio" name="q5" value="D"> D. All of these <br><br>
<input type="submit" value="Submit">
<br><br>
</fieldset>
</form>
<p>This page is owned and operated by OSI.</p>
</body>
</html>