-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsurvey.html
131 lines (131 loc) · 3.48 KB
/
survey.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<html>
<body>
<h2>SANITARY CONDITION OF WORKSHOPS AND FACTORIES</h2>
<h3>Table 1</h3>
<table border="1">
<tr>
<th>Number</th>
<th>Question</th>
<th>Yes</th>
<th>No</th>
<th>Blank</th>
<th>Total</th>
</tr>
<tr>
<td>1</td>
<td>Is there free circulation of air through and about the building in which you work?</td>
<td>468</td>
<td>249</td>
<td>93</td>
<td>810</td>
</tr>
<tr>
<td>2</td>
<td>Are there offensive odors in the rooms occupied by employees; if so, from what causes?</td>
<td>342</td>
<td>233</td>
<td>235</td>
<td>810</td>
</tr>
<tr>
<td>3</td>
<td>Are there facilities for washing?</td>
<td>460</td>
<td>124</td>
<td>226</td>
<td>810</td>
</tr>
<tr>
<td>4</td>
<td>Are seats provided, as prescribed by law?</td>
<td>320</td>
<td>192</td>
<td>298</td>
<td>810</td>
</tr>
<tr>
<td>5</td>
<td>Are employees furnished with pure drinking water?</td>
<td>527</td>
<td>102</td>
<td>181</td>
<td>810</td>
</tr>
<tr>
<td>6</td>
<td>Does the work require the employees to stoop over?</td>
<td>587</td>
<td>116</td>
<td>107</td>
<td>810</td>
</tr>
<tr>
<td>7</td>
<td>Are there proper and separate facilities for change of dress by males and females?</td>
<td>354</td>
<td>221</td>
<td>235</td>
<td>810</td>
</tr>
<tr>
<td>8</td>
<td>Are there separate water-closets for males and females?</td>
<td>509</td>
<td>126</td>
<td>175</td>
<td>810</td>
</tr>
<tr>
<td>9</td>
<td>Are there stairways from the windows outside?</td>
<td>350</td>
<td>318</td>
<td>148</td>
<td>816</td>
</tr>
<tr>
<td>10</td>
<td>Are the rooms supplied with water pipes?</td>
<td>265</td>
<td>385</td>
<td>165</td>
<td>815</td>
</tr>
<tr>
<td>11</td>
<td>Are there hose attachments?</td>
<td>224</td>
<td>375</td>
<td>218</td>
<td>817</td>
</tr>
<tr>
<td>12</td>
<td>Are there water tanks and buckets on each floor?</td>
<td>236</td>
<td>387</td>
<td>198</td>
<td>821</td>
</tr>
</table>
<h3>Table 2</h3>
<table border="1">
<tr>
<th>Question</th>
<th>Sit</th>
<th>Stand</th>
<th>Blank</th>
<th>Optional</th>
<th>Total</th>
</tr>
<tr>
<td>Are employees compelled to stand or sit at their work?</td>
<td>469</td>
<td>175</td>
<td>99</td>
<td>67</td>
<td>810</td>
</tr>
</table>
</body>
</html>