-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpulmonogy.html
More file actions
662 lines (571 loc) · 20.3 KB
/
pulmonogy.html
File metadata and controls
662 lines (571 loc) · 20.3 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
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
<!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" />
<!--
- primary meta tags
-->
<title>Jeevandaan - Pulmonology</title>
<meta name="title" content="Jeevandaan - Pulmonology" />
<!--
- favicon
-->
<link rel="shortcut icon" href="favicon.png" type="image/svg+xml" />
<!--
- google font link
-->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Rubik:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<!--
- custom css link
-->
<link rel="stylesheet" href="./assets/css/style.css" />
<link rel="stylesheet" href="./styles.css" />
<!--
- preload images
-->
<link rel="preload" as="image" href="./assets/images/hero-banner.png" />
<link rel="preload" as="image" href="./assets/images/hero-bg.png" />
<style>
.department-info {
background-color: var(--alice-blue);
padding: 40px;
border-radius: var(--radius-12);
margin-bottom: 40px;
text-align: center;
}
.department-info h2 {
margin-bottom: 20px;
color: var(--rich-black-fogra-29);
}
.department-info p {
font-size: var(--title-md);
line-height: 1.6;
max-width: 800px;
margin: 0 auto 20px;
}
.department-image {
max-width: 100%;
border-radius: var(--radius-12);
margin: 20px 0;
}
.doctors-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 40px;
}
.doctor-card {
background-color: var(--white);
border-radius: var(--radius-12);
overflow: hidden;
box-shadow: var(--shadow-1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.doctor-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-2);
}
.doctor-image {
width: 100%;
height: 250px;
object-fit: cover;
}
.doctor-info {
padding: 20px;
}
.doctor-info h3 {
margin: 0 0 10px 0;
color: var(--rich-black-fogra-29);
}
.doctor-specialty {
color: var(--verdigris);
font-weight: var(--fw-700);
margin: 0 0 10px 0;
}
.doctor-description {
margin: 15px 0;
color: var(--independece);
}
.btn-appointment {
display: inline-block;
background-color: var(--verdigris);
color: var(--white);
padding: 10px 20px;
border-radius: var(--radius-6);
font-weight: var(--fw-700);
transition: background-color 0.3s ease;
border: none;
cursor: pointer;
width: 100%;
text-align: center;
}
.btn-appointment:hover {
background-color: var(--midnight-green);
}
</style>
</head>
<body id="top">
<!--
- #HEADER
-->
<header class="header" data-header>
<div class="container">
<a href="index.html" class="logo">
<img
src=".\assets\images\logofinal.png"
width="200"
height="46"
alt="Doclab home"
/>
</a>
<nav class="navbar" data-navbar>
<div class="navbar-top">
<a href="index.html" class="logo">
<img
src=".\assets\images\Jeevandaan-high-resolution-logo-white-transparent.png"
width="200"
height="46"
alt="Doclab home"
/>
</a>
<button
class="nav-close-btn"
aria-label="clsoe menu"
data-nav-toggler
>
<ion-icon name="close-outline" aria-hidden="true"></ion-icon>
</button>
</div>
<ul class="navbar-list">
<li class="navbar-item">
<a
href="profile.html"
class="navbar-link title-md profile-avatar"
title="Profile"
>
<img
src="https://png.pngtree.com/png-clipart/20230927/original/pngtree-man-avatar-image-for-profile-png-image_13001884.png"
alt="Profile avatar"
class="avatar-img"
/>
</a>
</li>
<ul class="navbar">
<li class="navbar-item">
<a
href="#"
class="navbar-link title-md"
onmouseover="showLanguageDropdown()"
onmouseout="hideLanguageDropdown()"
><i class="fa-solid fa-language"></i> LANGUAGE</a
>
<div
id="languageDropdown"
class="dropdown-content"
style="display: none"
>
<a href="#">Hindi</a>
<a href="#">English</a>
<a href="#">Bengali</a>
<a href="#">Telugu</a>
<a href="#">Marathi</a>
<a href="#">Tamil</a>
<a href="#">Urdu</a>
<a href="#">Gujarati</a>
<a href="#">Kannada</a>
<a href="#">Odia</a>
<a href="#">Punjabi</a>
<a href="#">Malayalam</a>
<a href="#">Assamese</a>
<a href="#">Maithili</a>
<a href="#">Sanskrit</a>
<a href="#">Kashmiri</a>
</div>
</li>
</ul>
<script>
// Language dropdown helpers (profile dropdown removed in favour of dedicated profile page)
function showLanguageDropdown() {
var dropdownContent =
document.getElementById("languageDropdown");
if (dropdownContent) dropdownContent.style.display = "block";
}
function hideLanguageDropdown() {
var dropdownContent =
document.getElementById("languageDropdown");
if (dropdownContent) dropdownContent.style.display = "none";
}
</script>
<li class="navbar-item">
<a href="index.html#asdfg" class="navbar-link title-md"
><i class="fa-solid fa-house-medical"></i> SERVICES</a
>
</li>
<li class="navbar-item">
<button
onclick="openModal()"
href="#"
class="navbar-link title-md"
>
<i class="fa-solid fa-truck-medical"></i> EMERGENCY
</button>
<!-- The modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close" onclick="closeModal()">×</span>
<h2>Emergency Alert</h2>
<p>Do you want to call an ambulance?</p>
<div class="button-container">
<button class="highlight" onclick="callAmbulance()">
Yes
</button>
<button onclick="closeModal()">No</button>
</div>
</div>
</div>
<script>
// Function to open the modal
function openModal() {
window.scroll(0, 0);
var modal = document.getElementById("myModal");
modal.style.display = "block";
// Highlight the Yes button by default
var yesButton = modal.querySelector(".highlight");
yesButton.focus();
}
// Function to close the modal
function closeModal() {
var modal = document.getElementById("myModal");
modal.style.display = "none";
}
// Function to call ambulance (triggered when Yes button is clicked)
function callAmbulance() {
alert("Calling ambulance");
closeModal();
}
// Close the modal when clicking outside of it
window.onclick = function (event) {
var modal = document.getElementById("myModal");
if (event.target == modal) {
closeModal();
}
};
</script>
</li>
<li class="navbar-item">
<a href="index.html#bob" class="navbar-link title-md"
><i class="fa-solid fa-phone"></i> CONTACT US</a
>
</li>
</ul>
<ul class="social-list">
<li>
<a href="twitter.com" class="social-link">
<ion-icon name="logo-twitter"></ion-icon>
</a>
</li>
<li>
<a href="facebook.com" class="social-link">
<ion-icon name="logo-facebook"></ion-icon>
</a>
</li>
<li>
<a href="pinterest.com" class="social-link">
<ion-icon name="logo-pinterest"></ion-icon>
</a>
</li>
<li>
<a href="https://www.instagram.com/" class="social-link">
<ion-icon name="logo-instagram"></ion-icon>
</a>
</li>
<li>
<a href="youtube.com" class="social-link">
<ion-icon name="logo-youtube"></ion-icon>
</a>
</li>
</ul>
</nav>
<button class="nav-open-btn" aria-label="open menu" data-nav-toggler>
<ion-icon name="menu-outline"></ion-icon>
</button>
<div class="overlay" data-nav-toggler data-overlay></div>
</div>
</header>
<main>
<article>
<!--
- #HERO
-->
<section
class="section hero"
style="background-image: url('./assets/images/hero-bg.png')"
aria-label="home"
>
<div class="container">
<div class="hero-content">
<p class="hero-subtitle has-before" data-reveal="left">
Pulmonology Department
</p>
<h1 class="headline-lg hero-title" data-reveal="left">
PULMONOLOGY <br />
SPECIALISTS
</h1>
</div>
</div>
</section>
<!--
- #DEPARTMENT INFO
-->
<section class="section">
<div class="container">
<div class="department-info">
<h2>About Our Pulmonology Department</h2>
<p>
Our Pulmonology Department specializes in the diagnosis and treatment of respiratory conditions affecting the lungs and airways. Our team of expert pulmonologists provides comprehensive care for patients with asthma, COPD, lung cancer, sleep disorders, and other respiratory diseases.
</p>
<p>
We utilize advanced diagnostic tools and treatment techniques to ensure accurate diagnosis and effective management of respiratory conditions. Our department is equipped with state-of-the-art pulmonary function testing equipment, bronchoscopy suites, and sleep study facilities.
</p>
<img src="./assets/images/doctorr.png" alt="Pulmonology Department" class="department-image" />
</div>
<h2 class="headline-md text-center">Our Pulmonologists</h2>
<div class="doctors-grid">
<!-- Doctor 1 -->
<div class="doctor-card">
<img src="./assets/images/doctorr.png" alt="Dr. Robert Williams" class="doctor-image" />
<div class="doctor-info">
<h3>Dr. Robert Williams</h3>
<div class="doctor-specialty">Senior Pulmonologist</div>
<p class="doctor-description">
Dr. Williams has over 15 years of experience in treating complex respiratory conditions. He specializes in interventional pulmonology and thoracic oncology, with a focus on minimally invasive procedures.
</p>
<button class="btn-appointment">Book Appointment</button>
</div>
</div>
<!-- Doctor 2 -->
<div class="doctor-card">
<img src="./assets/images/doctorr.png" alt="Dr. Maria Gonzalez" class="doctor-image" />
<div class="doctor-info">
<h3>Dr. Maria Gonzalez</h3>
<div class="doctor-specialty">Sleep Medicine Specialist</div>
<p class="doctor-description">
Dr. Gonzalez specializes in sleep disorders including sleep apnea, insomnia, and narcolepsy. She directs our sleep disorders center and has helped thousands of patients achieve better sleep health.
</p>
<button class="btn-appointment">Book Appointment</button>
</div>
</div>
<!-- Doctor 3 -->
<div class="doctor-card">
<img src="./assets/images/doctorr.png" alt="Dr. James Wilson" class="doctor-image" />
<div class="doctor-info">
<h3>Dr. James Wilson</h3>
<div class="doctor-specialty">Critical Care Specialist</div>
<p class="doctor-description">
Dr. Wilson focuses on critical care medicine and the management of severe respiratory failure. He has extensive experience in mechanical ventilation and extracorporeal membrane oxygenation (ECMO).
</p>
<button class="btn-appointment">Book Appointment</button>
</div>
</div>
</div>
</div>
</section>
</article>
</main>
<!--
- #FOOTER
-->
<footer
class="footer"
style="background-image: url('./assets/images/footer-bg.png')"
>
<div class="container">
<div class="section footer-top">
<div class="footer-brand" data-reveal="bottom">
<a href="index.html" class="logo">
<img
src="assets/images/logofinal.png"
width="0200"
height="46"
loading="lazy"
alt="Doclab home"
/>
</a>
<ul class="contact-list has-after">
<li class="contact-item">
<div class="item-icon">
<ion-icon name="mail-open-outline"></ion-icon>
</div>
<div>
<p>
Main Email :
<a href="mailto:jeevandaan@gmail.com" class="contact-link"
>jeevandaan@­gmail.com</a
>
</p>
<p>
Inquiries :
<a href="jeevandaanqueries@gmail.com" class="contact-link"
>jeevandaanqueries@gmail.com</a
>
</p>
</div>
</li>
<li class="contact-item">
<div class="item-icon">
<ion-icon name="call-outline"></ion-icon>
</div>
<div>
<p>
Office Telephone :
<a href="tel:7509043085" class="contact-link">7509043085</a>
</p>
<p>
Mobile :
<a href="tel:9471784500" class="contact-link">9471784500</a>
</p>
</div>
</li>
</ul>
</div>
<div class="footer-list" data-reveal="bottom">
<p class="headline-sm footer-list-title">About Us</p>
<p class="text">DEVELOPED BY Ctrl Z</p>
<address class="address">
<ion-icon name="map-outline"></ion-icon>
<span class="text">
NIT JSR <br />
Jamshedpur,832108
</span>
</address>
</div>
<ul class="footer-list" data-reveal="bottom">
<li>
<p class="headline-sm footer-list-title">Services</p>
</li>
<li>
<a href="index.html#asdf" class="text footer-link">Conditions</a>
</li>
<li>
<a href="medicine.html" class="text footer-link">Medicine List</a>
</li>
<li>
<a href="#" class="text footer-link">How It Works</a>
</li>
<li>
<a href="index.html#doctors-list" class="text footer-link">Doctor List</a>
</li>
<li>
<a href="#" class="text footer-link">Health Centres</a>
</li>
<li>
<a href="index.html#bob" class="text footer-link">Contact Us</a>
</li>
</ul>
<ul class="footer-list" data-reveal="bottom">
<li>
<p class="headline-sm footer-list-title">Useful Links</p>
</li>
<li>
<a href="#" class="text footer-link">Conditions</a>
</li>
<li>
<a href="#" class="text footer-link">Terms of Use</a>
</li>
<li>
<a href="#" class="text footer-link">Our Services</a>
</li>
<li>
<a href="#" class="text footer-link">Join as a Doctor</a>
</li>
<li>
<a href="#" class="text footer-link">Kiosks List</a>
</li>
<li>
<a href="#" class="text footer-link">Troubleshooting</a>
</li>
</ul>
<div class="footer-list" data-reveal="bottom">
<p class="headline-sm footer-list-title">FEEDBACK</p>
<form action="" class="footer-form">
<input name="email" placeholder="" class="input-field title-lg" />
<button type="submit" class="btn has-before title-md">
SUBMIT
</button>
</form>
<p class="text">
The feedback will be considered and acted upon by the admin team.
</p>
</div>
</div>
<div class="footer-bottom">
<p class="text copyright">
© JEEVANDAAN 2024 | All Rights Reserved by Ctrl Z
</p>
<ul class="social-list">
<li>
<a href="#" class="social-link">
<ion-icon name="logo-facebook"></ion-icon>
</a>
</li>
<li>
<a href="#" class="social-link">
<ion-icon name="logo-twitter"></ion-icon>
</a>
</li>
<li>
<a href="#" class="social-link">
<ion-icon name="logo-google"></ion-icon>
</a>
</li>
<li>
<a href="#" class="social-link">
<ion-icon name="logo-linkedin"></ion-icon>
</a>
</li>
<li>
<a href="#" class="social-link">
<ion-icon name="logo-pinterest"></ion-icon>
</a>
</li>
</ul>
</div>
</div>
</footer>
<!--
- #BACK TO TOP
-->
<a
href="#top"
class="back-top-btn"
aria-label="back to top"
data-back-top-btn
>
<ion-icon name="chevron-up"></ion-icon>
</a>
<script src="./assets/js/script.js"></script>
<!--
- custom js link
-->
<script src="./assets/js/script.js"></script>
<!--
- ionicon link
-->
<script
type="module"
src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"
></script>
<script
nomodule
src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"
></script>
</body>
</html>