-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemergency.php
156 lines (154 loc) · 3.66 KB
/
emergency.php
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<?php
include("includes/header.php");
?>
<link rel="stylesheet" href="./css/view_suggestions.css" />
<link rel="stylesheet" href="css/view_tickets.css" />
<title>Emergency Numbers </title>
<?php
include("includes/nav.php");
?>
<table class="table table-striped" style="margin:40px;margin-top:60px;width:90%">
<tbody>
<tr>
<th style="font-family: Arial, sans-serif; font-size: 14px; padding: 10px 5px; border-style: solid; border-width: 1px; overflow: hidden; word-break: normal; font-weight: bold; background-color: #cb0000; color: #ffffff; text-align: center; vertical-align: top;">Authority Office</th>
<th style="font-family: Arial, sans-serif; font-size: 14px; padding: 10px 5px; border-style: solid; border-width: 1px; overflow: hidden; word-break: normal; font-weight: bold; background-color: #cb0000; color: #ffffff; text-align: center; vertical-align: top;">Phone Number</th>
</tr>
<tr>
<td>Police Control Room</td>
<td><strong>100</strong></td>
</tr>
<tr>
<td><span style="color: #ff0000;"><strong>Fire Fighters</strong></span></td>
<td><strong>101</strong></td>
</tr>
<tr>
<td>Traffic Police Control Room</td>
<td><strong>103</strong></td>
</tr>
<tr>
<td><strong>Taxi Complains via SMS</strong></td>
<td><strong>9851295100</strong></td>
</tr>
<tr>
<td>Child Missing</td>
<td>104</td>
</tr>
<tr>
<td>Traffic Jam Info (SMS)</td>
<td>JAM_4321</td>
</tr>
<tr>
<td>Emergency Police Service</td>
<td>4228435</td>
</tr>
<tr>
<td>Crime Information</td>
<td>4412748</td>
</tr>
<tr>
<td>Nepal Electricity Authority</td>
<td>4153164</td>
</tr>
<tr>
<td style="font-family: Arial, sans-serif; font-size: 14px; padding: 10px 5px; border-style: solid; border-width: 1px; overflow: hidden; word-break: normal; font-weight: bold; background-color: #cb0000; color: #ffffff; text-align: center; vertical-align: top;" colspan="2">RED CROSS / BLOOD BANK</td>
</tr>
<tr>
<td>Blood Bank (Pradarshani Marg)</td>
<td>4225344</td>
</tr>
<tr>
<td>Nepal Red Cross Society, Teku</td>
<td>4270650</td>
</tr>
<tr>
<td>Bhaktapur Red Cross</td>
<td>6611661</td>
</tr>
<tr>
<td style="font-family: Arial, sans-serif; font-size: 14px; padding: 10px 5px; border-style: solid; border-width: 1px; overflow: hidden; word-break: normal; font-weight: bold; background-color: #009688; color: #ffffff; text-align: center; vertical-align: top;" colspan="2">HOSPITALS</td>
</tr>
<tr>
<td>Alka Hospital</td>
<td>5555555, 5551555, 5553333</td>
</tr>
<tr>
<td>Army Hospital</td>
<td>4271940</td>
</tr>
<tr>
<td>B. & B Hospital</td>
<td>5531933</td>
</tr>
<tr>
<td>Banepa Hospital</td>
<td>664299, 6642418</td>
</tr>
<tr>
<td>Bir Hospital</td>
<td>4221119, 4221988</td>
</tr>
<tr>
<td>Bhaktapur Cancer Hospital</td>
<td>6611532</td>
</tr>
<tr>
<td>Bharosa Hospital Pvt. Ltd.</td>
<td>4475999, 4489891, 4474968</td>
</tr>
<tr>
<td>Chirayu National Hospital</td>
<td>4382382, 4383821, 4381770</td>
</tr>
<tr>
<td>Everest Hospital- New Baneshwor</td>
<td>4781294, 4783024, 4785177(Emergency)</td>
</tr>
<tr>
<td>Grande Hospital</td>
<td>5159266, 5159267</td>
</tr>
<tr>
<td>Kanti Children Hospital</td>
<td>4411550</td>
</tr>
<tr>
<td>KMC Teaching Hospital</td>
<td>4469064 , 4476152</td>
</tr>
<tr>
<td>Norvic Hospital</td>
<td>4258554, 4218230, 4101600(Emergency)</td>
</tr>
<tr>
<td>Police Hospital</td>
<td>4412430</td>
</tr>
<tr>
<td>Patan Hospital</td>
<td>5522295</td>
</tr>
<tr>
<td>Star Hospital,Sanepa</td>
<td>5550197</td>
</tr>
<tr>
<td>Teaching Hospital</td>
<td>4412505</td>
</tr>
<tr>
<td>Til Ganga Hospital</td>
<td>4493775</td>
</tr>
<tr>
<td>Vayodha Hospital Pvt. Ltd.</td>
<td>4286428, 4281666</td>
</tr>
<tr>
<td>Venus Hospital Pvt. Ltd.</td>
<td>4475120</td>
</tr>
</tbody>
</table>
<?php include("includes/footer.php"); ?>
</body>
</html>