-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontaminant-survey.html
executable file
·88 lines (80 loc) · 2.95 KB
/
contaminant-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
<html>
<!DOCTYPE html>
<head>
<title>
Contaminant Survey
</title>
<link rel="stylesheet" type="text/css" href="css/contaminant-survey-yesterday.css">
</head>
<body>
<h1 style="text-align: center; text-decoration: underline;">Contaminant Survey</h1>
<h2>24 June 2022</h2>
<div style="overflow-x: auto;">
<!--making table responsive-->
<table border="2px" style="font-size: 18px;">
<tr>
<th>S. No.</th>
<th>Factory Name</th>
<th>Waste water produced (daily)</th>
<th>Waste water self treated (daily)</th>
<th>Waste water treated by AHH (daily)</th>
</tr>
<tr>
<td>1</td>
<td>Arjuna Enterprises industrial</td>
<td>2.6 kiloLitres</td>
<td>0.7 kiloLitres</td>
<td>1.9 kiloLitres</td>
</tr>
<tr>
<td>2</td>
<td>Bhatra industries</td>
<td>11 kiloLitres</td>
<td>2 kiloLitres</td>
<td>9 kiloLitres</td>
</tr>
<tr>
<td>3</td>
<td>Champs plantworks</td>
<td>7.8 kiloLitres</td>
<td>6 kiloLitres</td>
<td>1.8 kiloLitres</td>
</tr>
<tr>
<td>4</td>
<td>Davis Dormitories essentials</td>
<td>3.3 kiloLitres</td>
<td>0.6 kiloLitres</td>
<td>2.7 kiloLitres</td>
</tr>
<tr>
<td>5</td>
<td>Excellencies factory</td>
<td>4.2 kiloLitres</td>
<td>2 kiloLitres</td>
<td>2.2 kiloLitres</td>
</tr>
<tr>
<td>6</td>
<td>Fortunate Furnitures</td>
<td>2.6 kiloLitres</td>
<td>0.3 kiloLitres</td>
<td>2.3 kiloLitres</td>
</tr>
<tr>
<td>7</td>
<td>Gameworld basics</td>
<td>13.9 kiloLitres</td>
<td>2.8 kilolitres</td>
<td>11.1 kilolitres</td>
</tr>
</table>
</div>
<a href="contaminant-survey-yesterday.html" title="view yesterday's stats"><button style="background-color: #0011FF; border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: underline;
display: inline-block; font-size: 16px;"> Yesterday's statistics</button></a>
<br>
<hr>
<a href="index.html" title="Homepage"><button style="background-color: #0011FF; border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: underline;
display: inline-block; font-size: 16px;"> Back to home</button></a>
</body>
</html>