-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuizRetryPure.html
More file actions
90 lines (84 loc) · 3.22 KB
/
QuizRetryPure.html
File metadata and controls
90 lines (84 loc) · 3.22 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!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;
}
p1 {
color: red;
}
form
{
border: 5px solid red;
color: black;
font-family: helvetica;
text-align: center;
}
</style>
</head>
<body>
<h1> OSI Site Induction </h1>
<p1> Fill in all Information Please and Answer All Questions. </p1>
<form class="pure-form" action="log_results_Post.php" method = "post">
<fieldset>
<br><br>
<label for="firstname">First Name</label>
<input type="text" name="firstname" placeholder="first name">
<label for="lastname">Last Name</label>
<input type="text" name="lastname" placeholder="last name">
<br><br>
<label for="email">Email</label>
<input type="text" name="email" placeholder="email">
<label for="company">Company</label>
<input type="text" name="company" placeholder="company">
<br><br>
Q1. What colour are the pet food plastic bins?
<br><br>
<input type="radio" name="q1" value="A">A. White <br>
<input type="radio" name="q1" value="B">B. Yellow <br>
<input type="radio" name="q1" value="C">C. Red <br>
<input type="radio" name="q1" value="D">D. Blue
<br><br>
Q2. What colour hats do the wardens wear during an evacuation?
<br><br>
<input type="radio" name="q2" value="A">A. White & Yellow <br>
<input type="radio" name="q2" value="B">B. Red & Yellow <br>
<input type="radio" name="q2" value="C">C. Yellow & Orange <br>
<input type="radio" name="q2" value="D">D. Orange & Red
<br><br>
Q3. Which of these is not part of the site security policy?
<br><br>
<input type="radio" name="q3" value="A">A. Bag Searches <br>
<input type="radio" name="q3" value="B">B. Locker Searches <br>
<input type="radio" name="q3" value="C">C. Vehicle Searches <br>
<input type="radio" name="q3" value="D">D. Photo Identificaton
<br><br>
Q4. When do you need to wash your hands?
<br><br>
<input type="radio" name="q4" value="A">A. After being in the toilet <br>
<input type="radio" name="q4" value="B">B. Every time the work place is re-entered <br>
<input type="radio" name="q4" value="C">C. When contact is made with unclean surfaces while handling product in Production Areas <br>
<input type="radio" name="q4" value="D">D. After covering mouth/nose to cough or sneeze,or after blowing nose <br>
<input type="radio" name="q4" value="E">E. All of the above
<br><br>
Q5. Which is not a food allergen?
<br><br>
<input type="radio" name="q5" value="A">A. Nuts <br>
<input type="radio" name="q5" value="B">B. Egg <br>
<input type="radio" name="q5" value="C">C. Milk <br>
<input type="radio" name="q5" value="D">D. Seafood <br>
<input type="radio" name="q5" value="E">E. Carbonated Water
<br><br>
<input type="submit" value="Submit">
<br><br>
</fieldset>
</form>
<p>This page is owned and operated by OSI.</p>
</body>
</html>