-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPPandGQuiz.html
More file actions
77 lines (70 loc) · 2.66 KB
/
PPandGQuiz.html
File metadata and controls
77 lines (70 loc) · 2.66 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
<!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_PPandG.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. Who do you report to when atttending the OSI site?
<br><br>
<input type="radio" name="q1" value="A"> A. Report to Gatehouse/Reception <br>
<input type="radio" name="q1" value="B"> B. Report to QA <br>
<input type="radio" name="q1" value="C"> C. Report to Supervisor <br>
<input type="radio" name="q1" value="D"> D. A and C
<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. What should you immediately do if you notice an evironmental issue while working at OSI?
<br><br>
<input type="radio" name="q3" value="A"> A. Report it immediately to your supervisor <br>
<input type="radio" name="q3" value="B"> B. Wash it down the drain <br>
<input type="radio" name="q3" value="C"> C. Ignore it <br>
<input type="radio" name="q3" value="D"> D. Call the Police
<br><br>
Q4. When are the Emergency Evancuation/Firm Alarms tested?
<br><br>
<input type="radio" name="q4" value="A"> A. Tuesday at 7pm <br>
<input type="radio" name="q4" value="B"> B. Sunday at 9 am and 4 pm <br>
<input type="radio" name="q4" value="C"> C. Monday at 10:30 am and 4 pm <br>
<input type="radio" name="q4" value="D"> D. Monday at 11 am <br><br>
<input type="submit" value="Submit">
<br><br>
</fieldset>
</form>
<p>This page is owned and operated by OSI.</p>
</body>
</html>