forked from tushargupta1504/Medical-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
664 lines (546 loc) · 21.7 KB
/
blog.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
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
663
664
<!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="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous" />
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="blog.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/photoswipe/5.4.4/photoswipe.min.css"
integrity="sha512-LFWtdAXHQuwUGH9cImO9blA3a3GfQNkpF2uRlhaOpSbDevNyK1rmAjs13mtpjvWyi+flP7zYWboqY+8Mkd42xA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="icon" href="img/favicon.png" type="image/png">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<title>Swasthya Point</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<style>
/* Custom Styles for the blog cards */
.blog-card {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
background-color: #f9f9f9;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease-in-out;
}
.blog-card:hover {
transform: translateY(-10px);
}
.blog-card img {
width: 100%;
max-width: 300px;
border-radius: 8px;
}
.blog-card h3 {
margin-top: 15px;
font-size: 20px;
text-align: center;
}
.blog-card p {
text-align: center;
font-size: 16px;
color: #555;
}
.faq-section h4 {
font-size: 18px;
margin: 20px 0 10px;
}
.faq-section p {
font-size: 16px;
color: #444;
}
</style>
</head>
<body>
<!-----------------header section --------------->
<header>
<input type="checkbox" id="toggler">
<label for="toggler" class="fas fa-bars"></label>
<a href="#" class="logo"><img src="img/swasthya-logo.png" alt="Swasthya Point"></a>
<nav class="navbar">
<a href="index.html">Home</a>
<a href="blog.html">Blogs</a>
<a href="nearby.html">Nearby</a>
<a href="appointment.html">Book Your Appointment</a>
<div class="dark-btn-navbar">
<label id="dark-change"></label>
</div>
</nav>
</header>
<style>
.blog-section {
padding-top: 190px;
margin-top: 5px;
background-color: #f4f4f9;
}
.blog-card {
display: flex;
flex-direction: column;
align-items: center;
padding: 30px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin-bottom: 40px;
width: 80%;
margin: 0 auto;
}
.blog-card img {
padding-top: 15px;
width: 100%;
max-width: 400px;
border-radius: 10px;
}
.blog-card h3 {
margin-top: 20px;
font-size: 24px;
font-weight: bold;
text-align: center;
}
.blog-card p {
text-align: center;
font-size: 16px;
color: #555;
margin-top: 10px;
line-height: 1.6;
}
.patient-quote {
font-size: 1.6rem;
font-style: italic;
background-color: #f4f4f9;
padding: 15px;
border-left: 4px solid #007bff;
margin: 20px 0;
border-radius: 8px;
color: #444;
}
.quote-author {
font-size: 2rem;
display: block;
margin-top: 10px;
font-weight: bold;
color: #007bff;
}
.success-stats {
font-size: 3rem;
display: flex;
justify-content: space-around;
margin-top: 20px;
}
.stat-box {
background-color: #f4f4f9;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 45%;
}
.stat-box h4 {
font-size: 24px;
color: #007bff;
margin-bottom: 10px;
}
.stat-box p {
font-size: 16px;
color: #555;
}
.call-to-action {
margin-top: 30px;
}
.call-to-action p {
font-size: 18px;
margin-bottom: 10px;
color: #333;
}
.call-to-action a {
font-size: 16px;
color: #fff;
background-color: #007bff;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
}
.call-to-action a:hover {
background-color: #0056b3;
}
/* FAQ section styles */
.faq-section {
margin-top: 30px;
width: 80%;
margin: 0 auto;
}
.faq-item {
margin-bottom: 15px;
border-bottom: 1px solid #ddd;
}
.faq-question {
background-color: #f9f9f9;
border: none;
outline: none;
font-size: 18px;
cursor: pointer;
padding: 10px;
text-align: left;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
transition: background-color 0.3s ease;
}
.faq-question:hover {
background-color: #e6e6e6;
}
.faq-icon {
font-size: 20px;
transition: transform 0.3s ease;
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
background-color: #fff;
padding: 0 10px;
color: #555;
}
.faq-answer p {
margin: 10px 0;
font-size: 16px;
}
.faq-answer.active {
padding-top: 10px;
}
.faq-icon.rotate {
transform: rotate(180deg);
}
.modal {
z-index: 1050; /* Bootstrap default modal z-index */
}
.immune-points {
font-size: 2rem;
list-style-type: none; /* Remove default list styling */
padding: 0; /* Remove default padding */
}
.immune-points li {
font-size: 3rem;
display: flex; /* Use flexbox for alignment */
align-items: center; /* Center items vertically */
margin: 10px 0; /* Space between items */
font-size: 16px; /* Font size for list items */
}
.immune-points li i {
font-size: 3rem;
margin-right: 10px; /* Space between icon and text */
color: #28a745; /* Change icon color (green) */
font-size: 20px; /* Adjust icon size */
}
.comparison-section {
text-align: center;
padding: 2rem;
background-color: #f9f9f9;
}
.comparison-section h2 {
font-size: 2rem;
margin-bottom: 1rem;
}
.comparison-section .slogan {
font-size: 2rem;
color: #4CAF50; /* Green color */
margin-bottom: 2rem;
font-weight: bold;
}
.comparison-container {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.healthy-eating, .unhealthy-eating {
width: 45%;
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
padding: 1.5rem;
margin: 1rem;
}
h3 {
font-size: 3rem;
color: #4CAF50; /* Green color */
margin-bottom: 1rem;
}
ul {
list-style-type: none;
padding: 0;
font-size: 3rem;
}
li {
font-size: 2rem;
margin: 0.5rem 0;
}
li i {
color: #4CAF50; /* Green color for icons */
margin-right: 10px;
}
</style>
<body>
<header>
<input type="checkbox" id="toggler">
<label for="toggler" class="fas fa-bars"></label>
<a href="#" class="logo"><img src="img/swasthya-logo.png" alt="Swasthya Point"></a>
<nav class="navbar">
<a href="index.html">Home</a>
<a href="blog.html">Blogs</a>
<a href="nearby.html">Nearby</a>
<a href="appointment.html">Book Your Appointment</a>
<div class="dark-btn-navbar">
<label id="dark-change"></label>
</div>
</nav>
</header>
<main>
<!-- Section 1: Medical GIF -->
<section class="blog-section" id="medical-gif" style="padding-top: 120px;">
<div class="blog-card" data-aos="fade-up">
<img src="img/medical-w.gif" alt="Medical">
<h3>Your Health is Our Priority</h3>
<p>At Swasthya Point, we focus on delivering personalized healthcare. Our goal is to help you live a healthier, happier life with access to top-tier healthcare providers and personalized treatment plans.</p>
<h4>Why Choose Us?</h4>
<ul>
<li><i class="fas fa-user-md"></i> <strong>Expert Medical Professionals:</strong> Our team consists of experienced doctors and healthcare specialists.</li>
<li><i class="fas fa-heartbeat"></i> <strong>Comprehensive Services:</strong> We offer a wide range of medical services, from routine check-ups to advanced treatments.</li>
<li><i class="fas fa-comments"></i> <strong>Patient-Centered Approach:</strong> We prioritize your needs and preferences in all treatment plans.</li>
<li><i class="fas fa-calendar-check"></i> <strong>Convenient Appointments:</strong> Schedule your visits at a time that works best for you.</li>
<li><i class="fas fa-info-circle"></i> <strong>Health Education:</strong> We provide resources and guidance to help you make informed health decisions.</li>
</ul>
</div>
</section>
<!-- Section: Healthy vs. Unhealthy Eating -->
<section class="comparison-section" id="healthy-vs-unhealthy">
<h2>Healthy Eating vs. Unhealthy Eating</h2>
<p class="slogan">"Choose Nourishment, Not Just Fillers!"</p>
<div class="comparison-container">
<div class="healthy-eating">
<h3>Healthy Eating</h3>
<ul>
<li><i class="fas fa-apple-alt"></i> <strong>Fruits & Vegetables:</strong> Fresh and nutritious.</li>
<li><i class="fas fa-fish"></i> <strong>Lean Proteins:</strong> Chicken, fish, and legumes.</li>
<li><i class="fas fa-bread-slice"></i> <strong>Whole Grains:</strong> Brown rice, quinoa, and oats.</li>
<li><i class="fas fa-water"></i> <strong>Hydration:</strong> Drink plenty of water.</li>
<li><i class="fas fa-salad"></i> <strong>Healthy Fats:</strong> Avocados and nuts.</li>
</ul>
</div>
<div class="unhealthy-eating">
<h3>Unhealthy Eating</h3>
<ul>
<li><i class="fas fa-ban"></i> <strong>Processed Foods:</strong> Chips, candies, and snacks.</li>
<li><i class="fas fa-hamburger"></i> <strong>Fast Food:</strong> Burgers and fries.</li>
<li><i class="fas fa-candy-cane"></i> <strong>Excess Sugar:</strong> Soft drinks and desserts.</li>
<li><i class="fas fa-coffee"></i> <strong>Caffeine Overload:</strong> Energy drinks and excessive coffee.</li>
<li><i class="fas fa-drumstick-bite"></i> <strong>Fried Foods:</strong> Chips and fried chicken.</li>
</ul>
</div>
</div>
</section>
<!-- Section 3: Immune Boosting -->
<section class="blog-section" id="immune-boosting">
<div class="blog-card" data-aos="fade-up">
<img src="img/immune-w.jpg" alt="Immune Boosting">
<h3>Boost Your Immune System</h3>
<p>Protect yourself from illnesses by boosting your immune system. Regular exercise, quality sleep, staying hydrated, and consuming immune-boosting foods like citrus fruits and green vegetables can strengthen your body's defense mechanisms. Learn how these simple lifestyle changes can keep you healthier.</p>
<!-- Points with Icons -->
<ul class="immune-points">
<li><i class="fas fa-seedling"></i> Eat a Balanced Diet</li>
<li><i class="fas fa-running"></i> Exercise Regularly</li>
<li><i class="fas fa-bed"></i> Get Enough Sleep</li>
<li><i class="fas fa-water"></i> Stay Hydrated</li>
<li><i class="fas fa-apple-alt"></i> Incorporate Fruits and Vegetables</li>
<li><i class="fas fa-pills"></i> Consider Supplements</li> <!-- Updated -->
<li><i class="fas fa-smile"></i> Manage Stress</li>
<li><i class="fas fa-hand-holding-heart"></i> Avoid Smoking and Excessive Alcohol</li>
</ul>
</div>
</section>
<!-- Section 4: Patient Stories -->
<section class="blog-section" id="patient-stories">
<div class="blog-card" data-aos="fade-up">
<img src="img/patientstory-w.jpg" alt="Patient Stories" style="width: 100%; max-width: 500px;">
<h3>Inspiring Patient Stories</h3>
<!-- Introduction Paragraph -->
<p>Discover how our patients have triumphed over their health challenges, achieving remarkable recoveries. These stories of strength and resilience highlight the importance of the right treatment, positive mindset, and modern medical care in restoring not just health, but also hope.</p>
<!-- Feature: Highlighted Success Story -->
<blockquote class="patient-quote">
“I was on the verge of giving up, but the support I received here changed everything. Today, I feel healthier than ever.”
<span class="quote-author">– Sarah R., Recovered Cancer Patient</span>
</blockquote>
<!-- Additional Content: Statistics -->
<div class="success-stats">
<div class="stat-box" data-aos="fade-right">
<h4>95%</h4>
<p>of patients reported significant improvement in their quality of life after personalized treatment plans.</p>
</div>
<div class="stat-box" data-aos="fade-left">
<h4>80+</h4>
<p>patients have shared their recovery stories, showing that no challenge is insurmountable.</p>
</div>
</div>
<!-- Modal Popup for Contact Form -->
<div class="modal fade" id="contactModal" tabindex="-1" aria-labelledby="contactModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h5 class="modal-title" id="contactModalLabel">Share Your Story</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<!-- Modal Body with Form -->
<div class="modal-body">
<form>
<div class="mb-3">
<label for="name" class="form-label">Your Name</label>
<input type="text" class="form-control" id="name" placeholder="Enter your name">
</div>
<div class="mb-3">
<label for="email" class="form-label">Email address</label>
<input type="email" class="form-control" id="email" placeholder="[email protected]">
</div>
<div class="mb-3">
<label for="story" class="form-label">Your Story</label>
<textarea class="form-control" id="story" rows="3" placeholder="Share your experience with us"></textarea>
</div>
<div class="mb-3">
<label for="phone" class="form-label">Phone Number</label>
<input type="tel" class="form-control" id="phone" placeholder="Enter your phone number">
</div>
</form>
</div>
<!-- Modal Footer with Submit Button -->
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Submit</button>
</div>
</div>
</div>
</div>
<!-- Include Bootstrap JS for the Modal functionality -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</div>
</section>
<!-- Section 5: Health News Update -->
<section class="blog-section" id="health-news">
<div class="blog-card" data-aos="fade-up">
<img src="img/newsupdate-w.jpg" alt="Health News">
<h3>Health News Update</h3>
<p>Stay informed about the latest developments in healthcare. From breakthroughs in medical research to the newest health tips, this section will keep you updated on the latest advancements in medicine, treatments, and wellness trends across the globe.</p>
</div>
</section>
<!-- Section 6: FAQ -->
<section class="blog-section" id="faq">
<div class="blog-card faq-section" data-aos="fade-up">
<img src="img/faq-w.gif" alt="FAQ" style="width: 150px;">
<h3>Frequently Asked Questions</h3>
<!-- FAQ Item 1 -->
<div class="faq-item">
<button class="faq-question">
What is a balanced diet? <span class="faq-icon">▼</span>
</button>
<div class="faq-answer">
<p>A balanced diet is one that provides your body with all the essential nutrients, including proteins, carbohydrates, fats, vitamins, and minerals, in the right proportions.</p>
</div>
</div>
<!-- FAQ Item 2 -->
<div class="faq-item">
<button class="faq-question">
How often should I visit the doctor? <span class="faq-icon">▼</span>
</button>
<div class="faq-answer">
<p>It is recommended to visit a doctor at least once a year for a general health check-up. However, if you have any chronic conditions, you should consult your healthcare provider more frequently.</p>
</div>
</div>
<!-- FAQ Item 3 -->
<div class="faq-item">
<button class="faq-question">
How can I boost my immune system naturally? <span class="faq-icon">▼</span>
</button>
<div class="faq-answer">
<p>Boosting your immune system naturally involves maintaining a healthy diet rich in vitamins, exercising regularly, staying hydrated, and managing stress levels. Adequate sleep and avoiding smoking or excessive alcohol intake are also important.</p>
</div>
</div>
<!-- FAQ Item 4 -->
<div class="faq-item">
<button class="faq-question">
What should I include in my daily health routine? <span class="faq-icon">▼</span>
</button>
<div class="faq-answer">
<p>Your daily health routine should include balanced meals, regular physical activity, staying hydrated, proper hygiene, and mental health practices like meditation or relaxation. Regular check-ups are also key to preventing potential issues.</p>
</div>
</div>
<!-- FAQ Item 5 -->
<div class="faq-item">
<button class="faq-question">
What are the signs that I should seek immediate medical attention? <span class="faq-icon">▼</span>
</button>
<div class="faq-answer">
<p>Signs that require immediate medical attention include chest pain, difficulty breathing, sudden vision loss, intense headache, severe abdominal pain, or any injury causing uncontrollable bleeding. In such cases, it's best to visit an emergency room or consult a healthcare provider.</p>
</div>
</div>
<!-- FAQ Item 6 -->
<div class="faq-item">
<button class="faq-question">
How do I manage stress for better health? <span class="faq-icon">▼</span>
</button>
<div class="faq-answer">
<p>Managing stress involves regular physical activity, maintaining a healthy diet, ensuring good sleep quality, and practicing relaxation techniques like deep breathing, meditation, or yoga. Connecting with friends and family can also help reduce stress.</p>
</div>
</div>
</div>
</section>
<!-- JavaScript to handle the FAQ accordion behavior -->
<script>
document.querySelectorAll('.faq-question').forEach((button) => {
button.addEventListener('click', () => {
const faqAnswer = button.nextElementSibling;
const faqIcon = button.querySelector('.faq-icon');
// Toggle the visibility of the answer
faqAnswer.classList.toggle('active');
// Rotate the icon
faqIcon.classList.toggle('rotate');
// Adjust height for smooth open/close transition
if (faqAnswer.style.maxHeight) {
faqAnswer.style.maxHeight = null;
} else {
faqAnswer.style.maxHeight = faqAnswer.scrollHeight + 'px';
}
});
});
</script>
</main>
<footer class="bg-goy">
<div class="container">
<div class="row py-4 justify-content-center">
<div class="col-md-5 text-white">
<h5>Medical</h5>
<p>Putting your health first. Connect with top-tier healthcare providers, receive personalized treatment recommendations, and manage your health journey effortlessly.</p>
</div>
<div class="col-md-4 text-white">
<h5>New York</h5>
<p>709 Honey Creek Dr. <br> Delhi <br> NY 10028</p>
<p>1-888-299-2000 <br> medical.in </p>
</div>
<div class="col-md-3 text-white">
<h5>Aligarh</h5>
<p>4851 Willow Greene Drive <br> Montgomery <br> AL 36109</p>
<p>1-888-299-2000 <br> med </p>
</div>
</div>
</div>
</footer>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>