-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
489 lines (460 loc) · 25 KB
/
index.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
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
<!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">
<title>Medi-Puff</title>
<!-- font awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- normalize css -->
<link rel = "stylesheet" href = "css/normalize.css">
<!-- custom css -->
<link rel = "stylesheet" href = "css/main.css">
</head>
<body>
<!-- header -->
<header class = "header bg-blue">
<nav class = "navbar bg-blue">
<div class = "container flex">
<a href = "index.html" class = "navbar-brand">
<img src = "images/logo.png" alt = "site logo">
</a>
<button type = "button" class = "navbar-show-btn">
<img src = "images/ham-menu-icon.png">
</button>
<div class = "navbar-collapse bg-white">
<button type = "button" class = "navbar-hide-btn">
<img src = "images/close-icon.png">
</button>
<ul class = "navbar-nav">
<li class = "nav-item">
<a href = "#" class = "nav-link">Home</a>
</li>
<li class = "nav-item">
<a href = "#" class = "nav-link">About</a>
</li>
<li class = "nav-item">
<a href = "#" class = "nav-link">Service</a>
</li>
<li class = "nav-item">
<a href = "#" class = "nav-link">Doctors</a>
</li>
<li class = "nav-item">
<a href = "#" class = "nav-link">Departments</a>
</li>
<li class = "nav-item">
<a href = "#" class = "nav-link">Blog</a>
</li>
<li class = "nav-item">
<a href = "#" class = "nav-link">Contact</a>
</li>
</ul>
<div class = "search-bar">
<form>
<div class = "search-bar-box flex">
<span class = "search-icon flex">
<img src = "images/search-icon-dark.png">
</span>
<input type = "search" class = "search-control" placeholder="Search here">
</div>
</form>
</div>
</div>
</div>
</nav>
<div class = "header-inner text-white text-center">
<div class = "container grid">
<div class = "header-inner-left">
<h1>your most dependable<br> <span>health partner</span></h1>
<p class = "lead">The Top Matching Services Available To You</p>
<p class = "text text-md">Your Trusted Partner in Health:
Delivering Excellence and Compassion in Every Treatment</p>
<div class = "btn-group">
<a href = "#" class = "btn btn-white">Learn More</a>
<a href = "#" class = "btn btn-light-blue">Sign In</a>
</div>
</div>
<div class = "header-inner-right">
<img src = "images/header.png">
</div>
</div>
</div>
</header>
<!-- end of header -->
<main>
<!-- about section -->
<section id = "about" class = "about py">
<div class = "about-inner">
<div class = "container grid">
<div class = "about-left text-center">
<div class = "section-head">
<h2>About Us</h2>
<div class = "border-line"></div>
</div>
<p class = "text text-lg">Here at Medi-Puff, we put your health and
wellbeing first. Welcome. At Medi-Puff, our commitment is to
offer compassionate, all-inclusive healthcare services that are
customized to each patient's specific need. Our team of skilled
experts is dedicated to providing personalized, high-quality
medical care, making sure you get the best care possible in a
comforting setting.
</p>
<a href = "#" class = "btn btn-white">Learn More</a>
</div>
<div class = "about-right flex">
<div class = "img">
<img src = "images/about-img.png">
</div>
</div>
</div>
</div>
</section>
<!-- end of about section -->
<!-- banner one -->
<section id = "banner-one" class = "banner-one text-center">
<div class = "container text-white">
<blockquote class = "lead"><i class = "fas fa-quote-left"></i> It never occurs to you when you're
young and healthy that your entire life could change in an instant.
<i class = "fas fa-quote-right"></i></blockquote>
<small class = "text text-sm">- Gourav Singh Dosad</small>
</div>
</section>
<!-- end of banner one -->
<!-- services section -->
<section id = "services" class = "services py">
<div class = "container">
<div class = "section-head text-center">
<h2 class = "lead">The Best Doctor gives the least medicines</h2>
<p class = "text text-lg">Here you gonna get a lot of Services.</p>
<div class = "line-art flex">
<div></div>
<img src = "images/4-dots.png">
<div></div>
</div>
</div>
<div class = "services-inner text-center grid">
<article class = "service-item">
<div class = "icon">
<img src = "images/service-icon-1.png">
</div>
<h3>Cardio Monitoring</h3>
<p class = "text text-sm">We at Medi-Puff recognize the vital significance
of heart health. Our all-inclusive cardiac monitoring services are made
to give precise and fast evaluations of your cardiovascular system,
assisting you in maintaining awareness and taking charge of your heart
health.
</p>
</article>
<article class = "service-item">
<div class = "icon">
<img src = "images/service-icon-2.png">
</div>
<h3>Medical Treatment</h3>
<p class = "text text-sm">Our goal at Medi-Puff is to provide our patients
with the most complete and individualized medical care possible. Our
team of highly qualified medical specialists collaborates to offer a
variety of therapies that are specifically designed to address each
patient's distinct needs.
</p>
</article>
<article class = "service-item">
<div class = "icon">
<img src = "images/service-icon-3.png">
</div>
<h3>Emergency Help</h3>
<p class = "text text-sm">Your security and welfare are our first concerns
at Medi-Puff. When you most need quick and efficient medical assistance,
our Emergency Help services are here to help. Our committed team of
emergency medical specialists is on call around-the-clock to provide
compassionate and skilled care in critical medical circumstances.
</p>
</article>
<article class = "service-item">
<div class = "icon">
<img src = "images/service-icon-4.png">
</div>
<h3>First Aid</h3>
<p class = "text text-sm">At Medi-Puff, we think that everyone ought should
be able to administer first aid in an emergency situation with the
necessary knowledge and abilities. Our First Aid programs and materials
are made to provide people the self-assurance to respond quickly and
effectively to medical emergencies.
</p>
</article>
</div>
</div>
</section>
<!-- end of services section -->
<!-- banner two section -->
<section id = "banner-two" class = "banner-two text-center">
<div class = "container grid">
<div class = "banner-two-left">
<img src = "images/banner-2-img.png">
</div>
<div class = "banner-two-right">
<p class = "lead text-white"> It Never Occurs To You When You're Young And
Healthy That Your Entire Life Could Change In An Instant. </p>
<div class = "btn-group">
<a href = "#" class = "btn btn-white">Learn More</a>
<a href = "#" class = "btn btn-light-blue">Sign In</a>
</div>
</div>
</div>
</section>
<!-- end of banner two section -->
<!-- doctors section -->
<section id = "doc-panel" class = "doc-panel py">
<div class = "container">
<div class = "section-head">
<h2>Our Doctor Panel</h2>
</div>
<div class = "doc-panel-inner grid">
<div class = "doc-panel-item">
<div class = "img flex">
<img src = "images/doc-1.png" alt = "doctor image">
<div class = "info text-center bg-blue text-white flex">
<p class = "lead">Dr. Devi Prasad Shetty</p>
<p class = "text-lg">Medicine</p>
</div>
</div>
</div>
<div class = "doc-panel-item">
<div class = "img flex">
<img src = "images/doc-2.png" alt = "doctor image">
<div class = "info text-center bg-blue text-white flex">
<p class = "lead">Dr. Ramakanta Panda</p>
<p class = "text-lg">Cardiothoracic Surgery</p>
</div>
</div>
</div>
<div class = "doc-panel-item">
<div class = "img flex">
<img src = "images/doc-3.png" alt = "doctor image">
<div class = "info text-center bg-blue text-white flex">
<p class = "lead">Dr. Anaya Sharma</p>
<p class = "text-lg">gastrointestinal surgeon</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end of doctors section -->
<!-- package services section -->
<section id = "package-service" class = "package-service py text-center">
<div class = "container">
<div class = "package-service-head text-white">
<h2>Package Service</h2>
<p class = "text text-lg">Best service package for you</p>
</div>
<div class = "package-service-inner grid">
<div class = "package-service-item bg-white">
<div class = "icon flex">
<i class = "fas fa-phone fa-2x"></i>
</div>
<h3>Regular Case</h3>
<p class = "text text-sm">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Consequatur, asperiores. Expedita, reiciendis quos beatae at consequatur voluptatibus fuga iste adipisci.</p>
<a href = "#" class = "btn btn-blue">Read More</a>
</div>
<div class = "package-service-item bg-white">
<div class = "icon flex">
<i class = "fas fa-calendar-alt fa-2x"></i>
</div>
<h3>Serious Case</h3>
<p class = "text text-sm">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Consequatur, asperiores. Expedita, reiciendis quos beatae at consequatur voluptatibus fuga iste adipisci.</p>
<a href = "#" class = "btn btn-blue">Read More</a>
</div>
<div class = "package-service-item bg-white">
<div class = "icon flex">
<i class = "fas fa-comments fa-2x"></i>
</div>
<h3>Emergency Case</h3>
<p class = "text text-sm">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Consequatur, asperiores. Expedita, reiciendis quos beatae at consequatur voluptatibus fuga iste adipisci.</p>
<a href = "#" class = "btn btn-blue">Read More</a>
</div>
</div>
</div>
</section>
<!-- end of package services section -->
<!-- posts section -->
<section id = "posts" class = "posts py">
<div class = "container">
<div class = "section-head">
<h2>Latest Post</h2>
</div>
<div class = "posts-inner grid">
<article class = "post-item bg-white">
<div class = "img">
<img src = "images/post-1.jpg">
</div>
<div class = "content">
<h4>Inspiring stories of person and family centered care during a global pandemic.</h4>
<p class = "text text-sm">Mr. and Mrs. Patel, both in their 60s, were diagnosed with COVID-19 and
admitted to Medi-Puff's
dedicated COVID-19 unit. Their daughter, Maya, shared their experience with heartfelt
gratitude for the care they received.</p>
<p class = "text text-sm">Upon admission, the Patels were immediately made to feel at ease by
the medical staff who explained their treatment plan in detail and ensured their
comfort throughout their stay.</p>
<div class = "info flex">
<small class = "text text-sm"><i class = "fas fa-clock"></i> October 27, 2020</small>
<small class = "text text-sm"><i class = "fas fa-comment"></i> 5 comments</small>
</div>
</div>
</article>
<article class = "post-item bg-white">
<div class = "img">
<img src = "images/post-2.jpg">
</div>
<div class = "content">
<h4>Inspiring stories of person and family centered care during a global pandemic.</h4>
<p class = "text text-sm">care shone brightly through the experiences of the Gupta family.</p>
<p class = "text text-sm">The medical team at Medi-Puff tailored Mr.
and Mrs. Gupta's care to meet their unique medical needs and
preferences. They closely monitored their symptoms, adjusted
medications promptly, and provided comfort measures that eased
their discomfort during recovery. Ritu recalled how the nurses
went above and beyond to address her parents' concerns, creating
a supportive environment that felt like an extension of their
own home.</p>
<div class = "info flex">
<small class = "text text-sm"><i class = "fas fa-clock"></i> December 12, 2020</small>
<small class = "text text-sm"><i class = "fas fa-comment"></i> 5 comments</small>
</div>
</div>
</article>
<article class = "post-item bg-white">
<div class = "img">
<img src = "images/post-3.jpg">
</div>
<div class = "content">
<h4>Inspiring stories of person and family centered care during a global pandemic.</h4>
<p class = "text text-sm">Amidst the uncertainty and challenges brought
by the global pandemic, Medi-Puff embraced a profound commitment to
person and family-centered care, exemplified through the experience
of the Singh family.</p>
<p class = "text text-sm">Recognizing the unique needs of each patient,
Medi-Puff tailored Mr. and Mrs. Singh's care to optimize their recovery.
The medical team monitored their health closely, adjusting treatments
as needed to manage symptoms and enhance comfort. Rohan expressed how
the nurses and doctors went beyond medical care, offering emotional
support and companionship that eased the loneliness of isolation.</p>
<div class = "info flex">
<small class = "text text-sm"><i class = "fas fa-clock"></i> March 28, 2021</small>
<small class = "text text-sm"><i class = "fas fa-comment"></i> 5 comments</small>
</div>
</div>
</article>
</div>
</div>
</section>
<!-- end of posts section -->
<!-- contact section -->
<section id = "contact" class = "contact py">
<div class = "container grid">
<div class = "contact-left">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2384.626
8289831164!2d-6.214682984112116!3d53.29621947996855!2m3!1f0!2f0!3f0!3m2!1i10
24!2i768!4f13.1!3m3!1m2!1s0x486709e0c9c80f8f%3A0x92f408d10f2277c2!2sREVO!5e0
!3m2!1sen!2snp!4v1636264848776!5m2!1sen!2snp" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
<div class = "contact-right text-white text-center bg-blue">
<div class = "contact-head">
<h3 class = "lead">Contact Us</h3>
<p class = "text text-md">Thank you for your interest in Medi-Puff.
We are here to assist you with any inquiries or concerns you may
have. Please feel free to reach out to us</p>
</div>
<form>
<div class = "form-element">
<input type = "text" class = "form-control" placeholder="Your name">
</div>
<div class = "form-element">
<input type = "email" class = "form-control" placeholder="Your email">
</div>
<div class = "form-element">
<textarea rows = "5" placeholder="Your Message" class = "form-control"></textarea>
</div>
<button type = "submit" class = "btn btn-white btn-submit">
<i class = "fas fa-arrow-right"></i> Send Message
</button>
</form>
</div>
</div>
</section>
<!-- end of contact section -->
</main>
<!-- footer -->
<footer id = "footer" class = "footer text-center">
<div class = "container">
<div class = "footer-inner text-white py grid">
<div class = "footer-item">
<h3 class = "footer-head">about us</h3>
<div class = "icon">
<img src = "images/logo.png">
</div>
<p class = "text text-md">Here at Medi-Puff, we put
your health and wellbeing first. Welcome. At Medi-Puff,
our commitment is to offer
compassionate, all-inclusive healthcare services that
are customized to each patient's specific need.</p>
<address>
Medic Clinic <br>
Panchaki Rd, Kath-Godam <br>
Medi-Puff <br>
India
</address>
</div>
<div class = "footer-item">
<h3 class = "footer-head">tags</h3>
<ul class = "tags-list flex">
<li>medical care</li>
<li>emergency</li>
<li>therapy</li>
<li>surgery</li>
<li>medication</li>
<li>nurse</li>
</ul>
</div>
<div class = "footer-item">
<h3 class = "footer-head">Quick Links</h3>
<ul>
<li><a href = "#" class = "text-white">Our Services</a></li>
<li><a href = "#" class = "text-white">Our Plan</a></li>
<li><a href = "#" class = "text-white">Privacy Policy</a></li>
<li><a href = "#" class = "text-white">Appointment Schedule</a></li>
</ul>
</div>
<div class = "footer-item">
<h3 class = "footer-head">make an appointment</h3>
<p class = "text text-md">Ready to schedule your visit to Medi-Puff? Booking an appointment is quick and easy.</p>
<ul class = "appointment-info">
<li>8:00 AM - 11:00 AM</li>
<li>2:00 PM - 05:00 PM</li>
<li>8:00 PM - 11:00 PM</li>
<li>
<i class = "fas fa-envelope"></i>
<span>[email protected]</span>
</li>
<li>
<i class = "fas fa-phone"></i>
<span>+91 99934 67834</span>
</li>
</ul>
</div>
</div>
<div class = "footer-links">
<ul class = "flex">
<li><a href = "#" class = "text-white flex"> <i class = "fab fa-facebook-f"></i></a></li>
<li><a href = "#" class = "text-white flex"> <i class = "fab fa-twitter"></i></a></li>
<li><a href = "#" class = "text-white flex"> <i class = "fab fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</footer>
<!-- end of footer -->
<!-- custom js -->
<script src = "js/script.js"></script>
</body>
</html>