-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeptEmergency.html
421 lines (384 loc) · 21.8 KB
/
deptEmergency.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
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="bootstrap-5.1.3-dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" />
<link rel="stylesheet" href="/CSS/mainpage.css">
<title>Department Emergency</title>
<style>
.button {
padding: 13px !important;
font-size: 1.1em;
border-radius: 15px !important;
text-decoration: none;
}
.button:hover {
border: 1px solid #0b5ed7;
background-color: beige;
color: black;
}
</style>
</head>
<body>
<nav class="Navigation-appointment">
<h2 class="logo">Doctors Hospital</h2>
<nav>
<a href="" class="Navigation-btn"> <img src="icon/calendar.png" alt="icon" height="30px" width="30px"
class="icon-Navigation-btn"> Appointment</a>
<a href="" class="Navigation-btn"> <img src="icon/appointment (1).png" alt="" height="30px" width="30px"
class="icon-Navigation-btn"> Schedule in MyChart</a>
<a href="" class="Navigation-btn"><img src="icon/log-in.png" alt="" height="30px" width="30px"
class="icon-Navigation-btn"> Sign In</a>
</nav>
</nav>
<nav class="navbar navbar-expand-lg navbar-dark"
style="background:linear-gradient(to right , #51478a , #3f7897,#16aeb9)">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="/mainpage.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link " href="/about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/doctor.html">Doctors</a>
</li>
<!-- Department Dropdown -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle active" href="#" id="navbarDropdown" type="button"
data-bs-toggle="dropdown">
Departments
</a>
<ul class="dropdown-menu ">
<li><a class="dropdown-item" href="/departmentAnaesthesia.html" target="_blank">Anaesthesia</a>
</li>
<li><a class="dropdown-item" href="/dept CARDIOLOGY.html" target="_blank">Cardiology</a></li>
<li><a class="dropdown-item" href="/dept dental.html" target="_blank">Dental</a></li>
<li><a class="dropdown-item" href="#" target="_blank">Emergency</a></li>
<li><a class="dropdown-item" href="#" target="_blank">Endocrinology</a></li>
<li><a class="dropdown-item" href="#" target="_blank">Gastroenterology</a></li>
<li><a class="dropdown-item" href="#" target="_blank">Neurology</a></li>
<li><a class="dropdown-item" href="#" target="_blank">Orthopaedics</a></li>
<li><a class="dropdown-item" href="#" target="_blank">Ophthalmology (EYE)</a></li>
<li><a class="dropdown-item" href="#" target="_blank">Otolaryngology (ENT)</a></li>
<li><a class="dropdown-item" href="#" target="_blank">Psychology</a></li>
<li><a class="dropdown-item" href="#" target="_blank">Pulmonology</a></li>
<li><a class="dropdown-item" href="#" target="_blank">Rheumatology</a></li>
<li><a class="dropdown-item" href="#" target="_blank">UROLOGY</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="/services.html">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/contact.html">Contact Us</a>
</li>
</ul>
</div>
</nav>
<!--
======================================
breadcrumb
======================================
-->
<div class="col-md-12 bg-light">
<!-- using breadcrumb bootstrap class -->
<div class="container-fluid">
<div class="row">
<div class="col-md-3">
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb" class="pt-4">
<ol class="breadcrumb px-3">
<li class="breadcrumb-item "><a href="/mainpage.html"
class="text-decoration-none text-primary">Home</a>
</li>
<li class="breadcrumb-item active">Departments</li>
<li class="breadcrumb-item active">Emergency</li>
</ol>
</nav>
</div>
<div class="col-md-3 ">
<img src="/image/Anesthesia.png" alt="" class="img-fluid mb-3" width="350px">
</div>
<div class="col-md-6 pt-5 Department">
<p class=" font-weight-bold display-3 mt-5 ">
EMERGENCY
</p>
<button class="btn btn-primary mt-3" type="button">Book Now</button>
</div>
</div>
</div>
</div>
<!--
======================================
EMERGENCY About
======================================
-->
<main class="col-md-12 mt-5">
<div class="container-fluid">
<div class="container">
<div class="row">
<div class="col-md-7">
<p class="display-6 font-weight-bold">
EMERGENCY
</p>
<h4>The Highest Quality & Quick Care</h4>
<p>In an emergency, every minute counts in providing the best care. At Doctor Hospital, Lahore Emergency Department, this not only means quality medical care, it also means personalized attention to our patients' and families emotional and spiritual needs. Our emergency room staff sets high standards of care, and we take pride in meeting and possibly even exceeding these standards. Our staff is well-prepared to meet the demands of the emergency room. The SGH Lahore Emergency Department assesses and treats people with serious injuries and those in need of emergency treatment. We are open 24/7.
</p>
<h2 class=" font-weight-bold">
MEDICAL EMERGENCIES MAY INCLUDE:
</h2>
<ol>
<li> Severe physical injury, such as serious burns, deep wounds, broken or fractured bones, and concussions</li>
<li> Severe allergic reactions that result in swelling, hives or difficulty breathing</li>
<li> Seizures</li>
<li> Abdominal pains</li>
<li> Head, neck or spinal injuries</li>
<li> Cardiac issues, stroke or chest pain</li>
<li> Difficulty in breathing</li>
<li> High fever</li>
<li> Food poisoning</li>
<li> Pregnancy related issues</li>
</ol>
</div>
<div class="col-md-5 ">
<div class="card w-50 border-primary mx-5 my-5 " style="padding: 0 !important;">
<div class="card-img-top">
<img src="/image/Anesthesiaarticle.webp" alt="Image" class="img-fluid">
</div>
<div class="card-body mb-3">
<h5 class="card-title font-weight-bold">
13 Things About Surgery You May Not Have Known
</h5>
<p class="text-muted">
Anesthesia
</p>
<p class="card-text mb-4 ">
13 Things About Surgery You May Not Have Known Surgery is a medical procedure that
involves cutting into the body to treat an injury, disease,...
</p>
<a href="https://www.cosmopolitan.com/career/a47142/things-i-wish-i-knew-before-i-became-a-plastic-surgeon/"
class="button btn-primary ">Read More</a>
</div>
</div>
</div>
</div>
<div class="col-md-12 mt-3">
<p class="display-5 text-center font-weight-bold">Our Emergency Physicians</p>
<div class="container-fluid">
<div class="container mx-4">
<div class="row row-cols-1 row-cols-md-4 g-2 p-3">
<div class="col">
<div class="card p-0 border-primary" style="border-radius: 9px; width: 250px; ">
<img src="/image/doctor Picture.jpg" class="card-img-top" alt="Doctor Picture"
style="border-top-left-radius: 8px; border-top-right-radius: 8px; width: 248px; height: 210px;">
<div class="card-body ">
<small class="card-title text-primary">Emergency</small>
<h5 class="card-title mt-1">Dr. Mehboob Waqar</h5>
<small class=" text-muted ">Emergency Physician</small>
<p class="mt-2 text-muted "><span><img src="/icon/location-outline.svg"
alt="icon" width="15px" class="mb-1"></span> <span
class="mx-1">Lahore</span>
</p>
<button href="" class="btn botton-doctor">Book Appointment</button>
</div>
</div>
</div>
<div class="col">
<div class="card p-0 border-primary" style="border-radius: 9px; width: 250px; ">
<img src="/image/doctor Picture.jpg" class="card-img-top" alt="Doctor Picture"
style="border-top-left-radius: 8px; border-top-right-radius: 8px; width: 248px; height: 210px;">
<div class="card-body ">
<small class="card-title text-primary">Emergency</small>
<h5 class="card-title mt-1">Dr. Muhammad Fahad</h5>
<small class=" text-muted ">Emergency Physician</small>
<p class="mt-2 text-muted "><span><img src="/icon/location-outline.svg"
alt="icon" width="15px" class="mb-1"></span> <span
class="mx-1">Lahore</span>
</p>
<button href="" class="btn botton-doctor">Book Appointment</button>
</div>
</div>
</div>
<div class="col">
<div class="card p-0 border-primary" style="border-radius: 9px; width: 250px; ">
<img src="/image/doctor Picture.jpg" class="card-img-top" alt="Doctor Picture"
style="border-top-left-radius: 8px; border-top-right-radius: 8px; width: 248px; height: 210px;">
<div class="card-body ">
<small class="card-title text-primary">Emergency</small>
<h5 class="card-title mt-1">Dr. Malik Noman</h5>
<small class=" text-muted ">Emergency Physician</small>
<p class="mt-2 text-muted "><span><img src="/icon/location-outline.svg"
alt="icon" width="15px" class="mb-1"></span> <span
class="mx-1">Lahore</span>
</p>
<button href="" class="btn botton-doctor">Book Appointment</button>
</div>
</div>
</div>
<div class="col">
<div class="card p-0 border-primary" style="border-radius: 9px; width: 250px; ">
<img src="/image/doctor Picture.jpg" class="card-img-top" alt="Doctor Picture"
style="border-top-left-radius: 8px; border-top-right-radius: 8px; width: 248px; height: 210px;">
<div class="card-body ">
<small class="card-title text-primary">Emergency</small>
<h5 class="card-title mt-1">Dr. Muhammad Bilal</h5>
<small class=" text-muted ">Emergency Physician</small>
<p class="mt-2 text-muted "><span><img src="/icon/location-outline.svg"
alt="icon" width="15px" class="mb-1"></span> <span
class="mx-1">Lahore</span>
</p>
<button href="" class="btn botton-doctor">Book Appointment</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<!--
===============================
Footer
===============================
-->
<div class="col-md-12" style="background-color: #0e1d1c;">
<div class="container">
<div class="container-fluid">
<div class="row">
<div class="col-md-3 ">
<h4 class="mt-5 mb-5" style="color: forestgreen;"> <span style="color: beige;">Doctors</span>
Hospital</h4>
<p style="color: beige;">Doctors Hospital is the best hospital in Lahore, providing world-class
care to all patients. We are a multi-specialty hospital with cutting-edge integrated
technology and Western-trained staff.</p>
</div>
<!-- Use Css .set -->
<!-- General -->
<div class="col-md-3 px-5">
<ul class="list-unstyled mx-5">
<li>
<h4 class="mt-5 mb-5" style="color:#fff">General</h4>
</li>
<li>
<a href="#" class="set">Home</a>
</li>
<li>
<a href="#" class="set">About</a>
</li>
<li>
<a href="#" class="set">Services</a>
</li>
<li>
<a href="#" class="set">Doctor</a>
</li>
<li>
<a href="#" class="set">Department</a>
</li>
<li>
<a href="#" class="set">Contect Us</a>
</li>
</ul>
</div>
<!-- Email -->
<div class="col-md-3 px-4">
<ul class="list-unstyled">
<li>
<h4 class="mt-5 mb-5" style="color:#fff">Email</h4>
</li>
<li class="set">
<i class="fas fa-envelope-open-dollar"></i>
<a href="mailto:[email protected]" class="set mx-2">General Enquiry</a>
</li>
<li class="set">
<i class="fas fa-envelope-open-dollar"></i>
<a href="mailto:[email protected]" class="set mx-2">Suport,Complaints &
Feedback</a>
</li>
<li class="set">
<i class="fas fa-envelope-open-dollar"></i>
<a href="mailto:[email protected]" class="set mx-2">JCI Related Concerns</a>
</li>
</ul>
</div>
<!-- support -->
<div class="col-md-3 px-5">
<ul class="list-unstyled mx-5 px-2">
<li>
<h4 class="mt-5 mb-5" style="color:#fff">Support</h4>
</li>
<li>
<a href="/NewPatientRegistration.html" class="set" target="_blank">Sign Up</a>
</li>
<li>
<a href="#" class="set" target="_blank">Sign In</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<hr style="color: #39c7cc; height: 3px;">
<!-- Copyright -->
<div class="container">
<div class="container-fluid">
<div class="row">
<div class="col-md-5">
<p style="color: #fff;">©Copyright 2022. Doctors Hospital Hospital. All Rights Reserved.</p>
</div>
<div class="col-md-3">
<ul class="list-unstyled d-flex justify-content-between px-3">
<li>
<a href="#" class="set" target="_blank">Privacy Policy</a>
</li>
<li>
<a href="/about.html" class="set" target="_blank">About Us</a>
</li>
</ul>
</div>
<div class="col-md-1">
</div>
<div class="col-md-2">
<ul class="list-unstyled d-flex justify-content-between">
<li>
<a href="https://www.facebook.com/mehboob.waqar.5?mibextid=ZbWKwL" class="set"
target="_blank"><i class="fab fa-facebook"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/muhammadfahadhussain/" class="set"
target="_blank"><i class="fab fa-linkedin"></i></a>
</li>
<li>
<a href="https://instagram.com/its_sharii01?igshid=YmMyMTA2M2Y=" class="set"
target="_blank"><i class="fab fa-instagram"></i></a>
</li>
<li>
<a href="https://www.twitter.com/" class="set" target="_blank"><i
class="fab fa-twitter"></i></a>
</li>
<li>
<a href="https://www.youtube.com/" class="set" target="_blank"><i
class="fab fa-youtube"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- script -->
<script src="./bootstrap-5.1.3-dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/chart.min.js"></script>
<script src="./bootstrap-5.1.3-dist/js/jquery-3.5.1.js"></script>
<script src="./bootstrap-5.1.3-dist/js/jquery.dataTables.min.js"></script>
<script src="./bootstrap-5.1.3-dist/js/dataTables.bootstrap5.min.js"></script>
</body>
</html>