-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex.html
More file actions
1328 lines (1143 loc) · 39.5 KB
/
index.html
File metadata and controls
1328 lines (1143 loc) · 39.5 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
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!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</title>
<meta name="title" content="Jeevandaan" />
<!--meta name="description" content="This is a madical html template made by codewithsadee
- 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" />
<!--
- 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>
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
/* Background color */
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
.modal {
display: none;
/* Hidden by default */
position: fixed;
/* Position the modal */
z-index: 1;
/* Make sure it appears above everything else */
left: 0;
top: 0;
width: 100%;
/* Full width */
height: 100%;
/* Full height */
overflow: auto;
/* Enable scrolling if needed */
background-color: rgba(0, 0, 0, 0.5);
/* Black background with opacity */
}
/* Modal content */
.modal-content {
background-color: #fefefe;
margin: 15% auto;
/* Center the modal vertically and horizontally */
padding: 20px;
border: 1px solid #888;
width: 80%;
/* 80% of the container width */
}
/* Close button */
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
/* Yes and No buttons */
.button-container {
text-align: center;
margin-top: 20px;
}
.button-container button {
padding: 10px 20px;
margin: 0 10px;
cursor: pointer;
}
.button-container button.highlight {
background-color: #4caf50;
/* Green */
color: white;
}
.modal-content {
background-color: #fefefe;
margin: 15% auto;
/* Center the modal vertically and horizontally */
padding: 20px;
border: 1px solid #888;
width: 60%;
/* Set width */
max-width: 400px;
/* Maximum width */
border-radius: 10px;
/* Rounded corners */
text-align: center;
/* Center align text */
}
/* Yes and No buttons */
.button-container {
text-align: center;
margin-top: 20px;
}
.button-container button {
padding: 10px 20px;
margin: 0 10px;
cursor: pointer;
border: none;
background-color: #4caf50;
/* Green */
color: white;
border-radius: 5px;
font-size: 16px;
}
.button-container button:focus {
outline: none;
/* Remove focus outline */
}
.button-container button:hover {
background-color: #45a049;
/* Darker green on hover */
}
.button-container button.highlight {
background-color: #45a049;
/* Darker green */
}
.button-container {
display: flex;
/* Use flexbox for horizontal layout */
justify-content: center;
/* Center the buttons horizontally */
margin-top: 20px;
}
.button-container button {
padding: 10px 20px;
margin: 0 10px;
cursor: pointer;
border: none;
background-color: #4caf50;
/* Green */
color: white;
border-radius: 5px;
font-size: 16px;
}
.button-container button:focus {
outline: none;
/* Remove focus outline */
}
.button-container button:hover {
background-color: #00adb3;
/* Darker green on hover */
}
.button-container button.highlight {
background-color: #00adb3;
/* Darker green */
}
.navbar-link:hover {
background-color: #00adb3;
color: black;
}
/* Dropdown container */
.dropdown {
display: inline-block;
position: relative;
}
/* Dropdown content (hidden by default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
/* Style for dropdown links */
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
background-color: #00adb3;
}
/* Show the dropdown content when hover */
.dropdown:hover .dropdown-content {
display: block;
}
</style>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css"
integrity="sha512-2SwdPD6INVrV/lHTZbO2nodKhrnDdJK9/kg2XD1r9uGqPo1cUbujc+IYdlYdEErWNu69gVcYgdxlmVmzTWnetw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body id="top">
<!--
- #PRELOADER
-->
<div class="preloader" data-preloader>
<div class="circle"></div>
</div>
<script>
// Scroll to the top of the page on page load
window.onbeforeunload = function () {
window.scroll(0, 0);
};
window.onload = function () {
window.scroll(0, 0);
};
</script>
<!--
- #HEADER
-->
<header class="header" data-header>
<div class="container">
<a href="#" 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="#" class="logo">
<img
src="./assets/images/logofinal.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="#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="#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>
<div id="asdasd"></div>
<main>
<article>
<!--
- #HERO
-->
<section
class="section hero"
style="background-image: url('./assets/images/hero-bg.png')"
aria-label="home"
id="hero"
>
<div class="container">
<div class="hero-content">
<p class="hero-subtitle has-before" data-reveal="left">
Empowering Rural India
</p>
<h1 class="headline-lg hero-title" data-reveal="left">
JEEVANDAAN <br />
HEALTH COMPANION.
</h1>
<div class="hero-card" data-reveal="left">
<p class="title-lg card-text" id="asdfg">LOGIN/SIGNUP</p>
<div class="wrapper">
<div class="input-wrapper title-lg">
<input
type="text"
id="contactNumberInput"
name="location"
placeholder="CONTACT"
class="input-field"
/>
</div>
<!-- Replace this block
<a href="#asdfg">
<button class="btn has-before">
<span class="span title-md">LOGIN
</span>
</button>
</a> -->
<!-- Button to login/signup -->
<a href="login.html">
<button id="loginBtn" class="btn has-before">
<span class="span title-md">LOGIN/SIGNUP</span>
</button>
</a>
<script>
document
.getElementById("loginBtn")
.addEventListener("click", (e) => {
const contactNumber = document
.getElementById("contactNumberInput")
.value.trim();
if (contactNumber) {
localStorage.setItem("contactNumber", contactNumber); // save number
} else {
localStorage.removeItem("contactNumber"); // remove old number if empty
}
// Navigate to login/signup page
window.location.href = "login-signup.html";
});
</script>
</div>
</div>
</div>
<figure class="hero-banner" data-reveal="right">
<img
src="assets/images/ai-generated-portrait-of-young-doctor-man-happy-smiling-free-png.webp"
width="590"
height="517"
loading="eager"
alt="hero banner"
class="w-100"
/>
</figure>
</div>
</section>
<!--
- #SERVICE
-->
<section class="service" aria-label="service" id="service">
<div class="container">
<ul class="service-list" id="asdf">
<li>
<div class="service-card" data-reveal="bottom">
<div class="card-icon">
<img
src="./assets/images/icon-1.png"
width="71"
height="71"
loading="lazy"
alt="icon"
/>
</div>
<h3 class="headline-sm card-title">
<a href="#">DIAGNOSE</a>
</h3>
<p class="card-text">
DIAGNOSE YOURSELF USING OUR AI-POWERED CHATBOT
</p>
<a href="https://chatbot-t0vx.onrender.com" target="">
<button class="btn-circle" aria-label="open chatbot">
<ion-icon
name="arrow-forward"
aria-hidden="true"
></ion-icon>
</button>
</a>
</div>
</li>
<li>
<div class="service-card" data-reveal="bottom">
<div class="card-icon">
<img
src="./assets/images/icon-2.png"
width="71"
height="71"
loading="lazy"
alt="icon"
/>
</div>
<h3 class="headline-sm card-title">
<a href="#">MEDICINES</a>
</h3>
<p class="card-text">
KNOW ABOUT YOUR PRESCRIBED MEDICATIONS
</p>
<a href="./medicine.html">
<button
class="btn-circle"
aria-label="read more about Gynecology"
>
<ion-icon
name="arrow-forward"
aria-hidden="true"
></ion-icon>
</button>
</a>
</div>
</li>
<li>
<div class="service-card" data-reveal="bottom">
<div class="card-icon">
<img
src="./assets/images/icon-3.png"
width="71"
height="71"
loading="lazy"
alt="icon"
/>
</div>
<h3 class="headline-sm card-title">
<a href="#">VACCINATION</a>
</h3>
<p class="card-text">BOOK A VACCINATION APPOINTMENT.</p>
<a href="vaccines.html">
<button
class="btn-circle"
aria-label="read more about Pulmonology"
>
<ion-icon
name="arrow-forward"
aria-hidden="true"
></ion-icon>
</button>
</a>
</div>
</li>
<li>
<div class="service-card" data-reveal="bottom">
<div class="card-icon">
<img
src="./assets/images/icon-4.png"
width="71"
height="71"
loading="lazy"
alt="icon"
/>
</div>
<h3 class="headline-sm card-title">
<a href="#">APPOINTMENT</a>
</h3>
<p class="card-text">
BOOK AN APPOINTMENT WITH THE NEAREST DOCTOR
</p>
<a href="doctors.html">
<button
class="btn-circle"
aria-label="read more about Orthopedics"
>
<ion-icon
name="arrow-forward"
aria-hidden="true"
></ion-icon>
</button>
</a>
</div>
</li>
</ul>
</div>
</section>
<!--
- #ABOUT
-->
<section class="section about" aria-labelledby="about-label">
<div class="container">
<div class="about-content">
<p
class="section-subtitle title-lg has-after"
id="about-label"
data-reveal="left"
>
About Us
</p>
<h2 class="headline-md" data-reveal="left">
HELPING RURAL AREAS WITH MEDICAL ASSISTANCE
</h2>
<p class="section-text" data-reveal="left">
Jeevandaan provides features and tools that could simplify how
rural ares gain medical assistance.
</p>
<ul class="tab-list" data-reveal="left">
<li>
<button class="tab-btn active">
<i class="fas fa-eye"></i> Vision
</button>
</li>
<li>
<button class="tab-btn">
<i class="fas fa-bullseye"></i> Mission
</button>
</li>
<li>
<button class="tab-btn">
<i class="fas fa-chess"></i> Strategy
</button>
</li>
</ul>
<p class="tab-text" data-reveal="left">
Jeevandaan, with useful tools like medicine knowledge and
vaccination provider, jeevandaan is a major step in improving
the medical state of rural areas.
</p>
<div class="wrapper">
<ul class="about-list">
<li class="about-item" data-reveal="left">
<ion-icon name="checkmark-circle-outline"></ion-icon>
<span class="span">MEDICINAL ASSISTANCE</span>
</li>
<li class="about-item" data-reveal="left">
<ion-icon name="checkmark-circle-outline"></ion-icon>
<span class="span">VACCINATION NOTIFICATIONS</span>
</li>
<li class="about-item" data-reveal="left">
<ion-icon name="checkmark-circle-outline"></ion-icon>
<span class="span">EXPERT HEALTHCARE IN REMOTE AREAS</span>
</li>
<li class="about-item" data-reveal="left">
<ion-icon name="checkmark-circle-outline"></ion-icon>
<span class="span">EMERGENCY SERVICES</span>
</li>
</ul>
</div>
</div>
<figure class="about-banner" data-reveal="right">
<img
src="./assets\images\doctorr.png"
width="554"
height="678"
loading="lazy"
alt="about banner"
class="w-100"
/>
</figure>
</div>
</section>
<!--
- #LISTING
-->
<section class="section listing" aria-labelledby="listing-label">
<div class="container">
<ul class="grid-list">
<li>
<p
class="section-subtitle title-lg"
id="listing-label"
data-reveal="left"
>
DOCTORS LIST
</p>
<h2 class="headline-md" data-reveal="left">
Browse by specialist
</h2>
</li>
<li>
<a href="psychiatry.html">
<div class="listing-card" data-reveal="bottom">
<div class="card-icon">
<img
src="./assets/images/icon-1.png"
width="71"
height="71"
loading="lazy"
alt="icon"
/>
</div>
<div>
<h3 class="headline-sm card-title">Psychiatry</h3>
<p class="card-text">Treatment of Mental Conditions</p>
</div>
</div>
</a>
</li>
<li>
<a href="gynecology.html">
<div class="listing-card" data-reveal="bottom">
<div class="card-icon">
<img
src="./assets/images/icon-2.png"
width="71"
height="71"
loading="lazy"
alt="icon"
/>
</div>
<div>
<h3 class="headline-sm card-title">Gynecology</h3>
<p class="card-text">Maternity And Women Care</p>
</div>
</div>
</a>
</li>
<li>
<a href="pulmonogy.html">
<div class="listing-card" data-reveal="bottom">
<div class="card-icon">
<img
src="./assets/images/icon-4.png"
width="71"
height="71"
loading="lazy"
alt="icon"
/>
</div>
<div>
<h3 class="headline-sm card-title">Pulmonology</h3>
<p class="card-text">Heart and Nerve Related Ailments</p>
</div>
</div>
</a>
</li>
<li>
<a href="orthopedics.html">
<div class="listing-card" data-reveal="bottom">
<div class="card-icon">
<img
src="./assets/images/icon-5.png"
width="71"
height="71"
loading="lazy"
alt="icon"
/>
</div>
<div>
<h3 class="headline-sm card-title">Orthopedics</h3>
<p class="card-text">Muscle Related Issues</p>
</div>
</div>
</a>
</li>
<li>
<a href="pediatrics.html">
<div class="listing-card" data-reveal="bottom">
<div class="card-icon">
<img
src="./assets/images/icon-6.png"
width="71"
height="71"
loading="lazy"
alt="icon"
/>
</div>
<div>
<h3 class="headline-sm card-title">Pediatrics</h3>
<p class="card-text">Children Care And Vaccination</p>
</div>
</div>
</a>
</li>
<li>
<a href="oncology.html">
<div class="listing-card" data-reveal="bottom">
<div class="card-icon">
<img
src="./assets/images/icon-7.png"
width="71"
height="71"
loading="lazy"
alt="icon"
/>
</div>
<div>
<h3 class="headline-sm card-title">Oncology</h3>
<p class="card-text">Cancer Treatment And Chemotherapy</p>
</div>
</div>
</a>
</li>
</ul>
</div>
</section>
<!--
- #BLOG
-->
<section class="section blog" aria-labelledby="blog-label" id="ahh">
<div class="container">
<p
class="section-subtitle title-lg text-center"
id="blog-label"
data-reveal="bottom"
>
News & Article
</p>
<h2
class="section-title headline-md text-center"
data-reveal="bottom"
>
Latest Articles
</h2>
<ul class="grid-list">
<li>
<div
class="blog-card has-before has-after"
data-reveal="bottom"
>
<div class="meta-wrapper">
<div class="card-meta">
<ion-icon name="person-outline"></ion-icon>
<span class="span">By Admin</span>
</div>
<div class="card-meta">
<ion-icon name="folder-outline"></ion-icon>
<span class="span">Specialist</span>
</div>
</div>
<h3 class="headline-sm card-title">
Could intermittent fasting reduce breast cancer
</h3>
<time class="title-sm date" datetime="2022-01-28"
>28 January, 2022</time
>
<p class="card-text">
Fasting for less than 13 h per night is connected with a 36%
greater risk of the recurrence of breast cancer when
compared to individuals fasting for ≥13 h per night. Before