-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1540 lines (1478 loc) · 62.8 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
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>
<title>MediSpace</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<meta property="og:title" content="Medica (Template 10)" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8" />
<meta property="twitter:card" content="summary_large_image" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style data-tag="reset-style-sheet">
html { line-height: 1.15;}body { margin: 0;}* { box-sizing: border-box; border-width: 0; border-style: solid;}p,li,ul,pre,div,h1,h2,h3,h4,h5,h6,figure,blockquote,figcaption { margin: 0; padding: 0;}button { background-color: transparent;}button,input,optgroup,select,textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0;}button,select { text-transform: none;}button,[type="button"],[type="reset"],[type="submit"] { -webkit-appearance: button;}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner { border-style: none; padding: 0;}button:-moz-focus,[type="button"]:-moz-focus,[type="reset"]:-moz-focus,[type="submit"]:-moz-focus { outline: 1px dotted ButtonText;}a { color: inherit; text-decoration: inherit;}input { padding: 2px 4px;}img { display: block;}html { scroll-behavior: smooth }
</style>
<style data-tag="default-style-sheet">
html {
font-family: Poppins;
font-size: 16px;
}
body {
font-weight: 400;
font-style:normal;
text-decoration: none;
text-transform: none;
letter-spacing: normal;
line-height: 1.15;
color: var(--dl-color-gray-black);
background-color: var(--dl-color-gray-white);
}
</style>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"
data-tag="font"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
data-tag="font"
/>
<style>
@keyframes fade-in-left {
0% {
opacity: 0;
transform: translateX(-20px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
</style>
<link rel="stylesheet" href="./style.css" />
<meta charset="utf-8">
<title>Chatbot in JavaScript | CodingNepal</title>
<link rel="stylesheet" href="style239.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Google Fonts Link For Icons -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@48,400,1,0" />
<script src="script239.js" defer></script>
</head>
<body>
<div>
<!-- <header data-thq="thq-navbar" class="home-navbar "> -->
<nav class="navbar navbar-expand-lg fixed-top" style="background-color: rgb(255, 255, 255); height: 115px;px;">
<style>
#navigator{
--tw-shadow: 0 4px 6px -1px #dee2e6,0 4px 4px -2px rgb(0 0 0);
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color),0 4px 4px -2px var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow,0 0 #29272700),var(--tw-ring-shadow,0 0 #3e010100),var(--tw-shadow);
/* border-bottom-width: 1px; */
width: 100%;
display: flex;
flex-wrap: inherit;
align-items: center;
justify-content: space-between;
padding: auto;
}
</style>
<div id="navigator" class="container-fluid">
<a class="navbar-brand" href="#">
<img src="public/Branding/updatedlogo.png" alt="Logo" width="180" height="100" class="d-inline-block align-text-top" >
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index1.html">Sign_in</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#how-it-works">Add prescription</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link disabled" aria-disabled="true">Disabled</a>
</li> -->
</ul>
</div>
</div>
</nav>
<!-- <div id="navi-bar" data-thq="thq-navbar-btn-group" class="home-right">
<button class="home-phone button">
<img
alt="image"
src="public/Icons/phone.svg"
class="home-image06"
/>
<span class="home-text06">+0 123-456-789</span>
</button>
<a href="#book" class="home-book button button-main">
<img
alt="image"
src="public/Icons/calendar.svg"
class="home-image07"
/>
<span class="home-text07">Book an appointment</span>
</a>
</div> -->
<!-- </header> -->
<div>
<link href="./index.css" rel="stylesheet" />
<script
type="text/javascript"
src="https://unpkg.com/dangerous-html/dist/default/lib.umd.js"
></script>
<div class="home-container">
<div data-modal="practices" class="home-modal">
<div class="home-practices">
<div class="home-heading">
<h1> </h1>
<span class="home-header">Our Advancing medical research.</span>
<svg
viewBox="0 0 1024 1024"
data-close="practices"
class="home-close"
>
<path
d="M225.835 286.165l225.835 225.835-225.835 225.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l225.835-225.835 225.835 225.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-225.835-225.835 225.835-225.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-225.835 225.835-225.835-225.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
></path>
</svg>
</div>
<div class="home-grid">
<div class="home-section">
<div class="home-heading01">
<span class="home-header01">Cardiology</span>
<span class="home-caption">
Our understanding of cardiovascular health, disorders, and treatments...
</span>
</div>
<div class="read-more">
<span class="home-text">Read more</span>
<img
alt="image"
src="public/Icons/arrow-2.svg"
class="home-image"
/>
</div>
</div>
<div class="home-section1">
<div class="home-heading02">
<span class="home-header02">Orthopedics</span>
<span class="home-caption1">
Focus on advancing musculoskeletal health and well-being...
</span>
</div>
<div class="read-more">
<span class="home-text01">Read more</span>
<img
alt="image"
src="public/Icons/arrow-2.svg"
class="home-image01"
/>
</div>
</div>
<div class="home-section2">
<div class="home-heading03">
<span class="home-header03">Ophtalmology</span>
<span class="home-caption2">
To improving vision health and addressing a range of eye-related conditions...
</span>
</div>
<div class="read-more">
<span class="home-text02">Read more</span>
<img
alt="image"
src="public/Icons/arrow-2.svg"
class="home-image02"
/>
</div>
</div>
<div class="home-section3">
<div class="home-heading04">
<span class="home-header04">Pediatrics</span>
<span class="home-caption3">
Our aim is to advance our understanding of child health, growth, development, and diseases...
</span>
</div>
<div class="read-more">
<span class="home-text03">Read more</span>
<img
alt="image"
src="public/Icons/arrow-2.svg"
class="home-image03"
/>
</div>
</div>
<div class="home-section4">
<div class="home-heading05">
<span class="home-header05">Nutrition</span>
<span class="home-caption4">
Focused on advancing our knowledge of dietary habits, nutritional requirements, and their impact on health...
</span>
</div>
<div class="read-more">
<span class="home-text04">Read more</span>
<img
alt="image"
src="public/Icons/arrow-2.svg"
class="home-image04"
/>
</div>
</div>
<div class="home-section5">
<div class="home-heading06">
<span class="home-header06">General</span>
<span class="home-caption5">
Our general medical research is to advance understanding and knowledge across a broad spectrum of medical disciplines...
</span>
</div>
<div class="read-more">
<span class="home-text05">Read more</span>
<img
alt="image"
src="public/Icons/arrow-2.svg"
class="home-image05"
/>
</div>
</div>
</div>
</div>
</div>
<section class="home-hero">
<div data-thq="thq-burger-menu" class="home-burger-menu">
<svg viewBox="0 0 1024 1024" class="home-icon1">
<path
d="M128 554.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM128 298.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM128 810.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
></path>
</svg>
</div>
<div data-thq="thq-mobile-menu" class="home-mobile-menu">
<div
data-thq="thq-mobile-menu-nav"
data-role="Nav"
class="home-nav"
>
<div class="home-container1">
<img
alt="image"
src="public/Branding/updatedlogo.png"
class="home-image08"
/>
<div data-thq="thq-close-menu" class="home-menu-close">
<svg viewBox="0 0 1024 1024" class="home-icon3">
<path
d="M810 274l-238 238 238 238-60 60-238-238-238 238-60-60 238-238-238-238 60-60 238 238 238-238z"
></path>
</svg>
</div>
</div>
<nav
data-thq="thq-mobile-menu-nav-links"
data-role="Nav"
class="home-nav1"
>
<span class="home-text08">Features</span>
<span class="home-text09">Add prescription</span>
<span class="home-text10">Sign_in</span>
<span class="home-text11">Disease Prediction</span>
<a href="#book" class="home-book1 button button-main">
<img
alt="image"
src="public/Icons/calendar.svg"
class="home-image09"
/>
<span class="home-text12">Book an appointment</span>
</a>
</nav>
</div>
</div>
<!-- </header> -->
<div class="home-main">
<div class="home-content">
<h1> </h1>
<h1> </h1>
<h1> </h1>
<div class="home-heading07">
<h1> </h1>
<h1> </h1>
<h1> </h1>
<h1> </h1>
<h1> </h1>
<h1> </h1>
<h1> </h1>
<div class="home-header07 box">
<body>
<p id="output"></p>
<script>
// Function to display a word's characters one by one
function displayWordCharactersOneByOne(word, delay) {
let currentIndex = 0;
function displayNextCharacter() {
if (currentIndex < word.length) {
const outputElement = document.getElementById('output');
outputElement.textContent += word[currentIndex];
currentIndex++;
setTimeout(displayNextCharacter, delay);
}
}
// Start displaying characters
displayNextCharacter();
}
// Call the function with your word and delay
const word = "Universal Medicine Insights: Scan, Learn & Heal in Any Indian Language.";
const delay =110; // Delay in milliseconds between each character
displayWordCharactersOneByOne(word, delay);
</script>
</body>
</div>
<span> </span>
<span> </span>
<span> </span>
<p class="home-caption6">
Experience the future of medicine information with MediSpace – your multilingual medical companion. Our innovative scanning technology transcends language barriers, enabling you to scan the name of any medicine in various Indian languages.
</p>
</div>
<!-- <link rel="stylesheet" href="./style123.css" />
<script src="script239.js" defer></script> -->
<button class="button button-main home-book2">
<img
alt="image"
src="public/Icons/newsearch.png"
class="home-image10"
/>
<a href="http://localhost:3000/">
<!-- <script src="./MediScanner/src/app/layout.tsx"></script> -->
<span>Search</span></a>
</button>
<!-- <button class="button button-main home-book2">
<img
alt="image"
src="public/Icons/newsearch.png"
class="home-image10"
/>
<a href="http://localhost:3000/">
<span>Scan</span></a>
</button> -->
</div>
<div>
<h1> </h1>
<h1> </h1>
<h1> </h1>
<h1> </h1>
<h1> </h1>
<h1> </h1>
</div>
<div class="home-image11">
<img
alt="image"
src="public/doctor-image-1500w.png"
class="home-image12"
/>
<button id="send-button">
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
z-index: 100;
}
#chatbot-container {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 100;
width: 350px;
max-height: 80vh;
overflow-y: auto;
background-color: #fff;
border: 1px solid #ccc;
border-radius: 10px;
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
#chat-header {
background-color: #007bff;
color: white;
padding: 10px;
z-index: 100;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
#chat-content {
padding: 10px;
color: white;
background-color: red;
z-index: 100;
}
#user-input {
width: 100%;
padding: 10px;
border: none;
border-top: 1px solid #ccc;
outline: 2px solid olivedrab;
}
#custom-button {
padding: 10px 20px;
background-color: #007bff;
color: white;
border: 2px solid #007bff;
border-radius: 5px;
cursor: pointer;
}
</style>
</button>
</div>
</div>
<div id="features" class="home-features">
<div class="home-content01">
<div class="features-section quick-links">
<div class="features-heading">
<h3 class="features-header">
<span>Scan Medicine</span>
</h3>
<img
alt="image"
src="public/Icons/arrow.svg"
class="features-icon"
/>
</div>
<p class="features-text">
<span>
Scan the medicine and retrieve concise information.
</span>
</p>
<div class="features-divider"></div>
</div>
<div class="features-section quick-links">
<div class="features-heading">
<h3 class="features-header"><a href="https://timesofindia.indiatimes.com/most-searched-products/health-and-fitness">
<span>Latest news</span></h3></a>
<img
alt="image"
src="public/Icons/arrow.svg"
class="features-icon"
/>
</div>
<p class="features-text">
<a href="https://timesofindia.indiatimes.com/most-searched-products/health-and-fitness">
<span>
Disseminating global health updates..
</span></a>
</p>
<div class="features-divider"></div>
<div>
</div>
</div>
<div>
<div>
<button class="chatbot-toggler">
<span class="material-symbols-rounded">mode_comment</span>
<span class="material-symbols-outlined">close</span>
</button>
<div class="chatbot">
<header>
<h2>MediSpace Chatbot</h2>
<span class="close-btn material-symbols-outlined">close</span>
</header>
<ul class="chatbox">
<li class="chat incoming">
<span class="material-symbols-outlined">smart_toy</span>
<p>Hi there 👋<br>How can I help you today?</p>
</li>
</ul>
<div class="chat-input">
<textarea placeholder="Enter a message..." spellcheck="false" required></textarea>
<span id="send-btn" class="material-symbols-rounded">send</span>
</div>
</div>
</div>
</div>
<div class="features-section quick-links">
<div class="features-heading">
<h3 class="features-header"><a href="index1.html"><span>Clinical results</span></a></h3>
<img
alt="image"
src="public/Icons/arrow.svg"
class="features-icon"
/>
</div>
<p class="features-text">
<a href="index1.html">
<span>
Aims to provide valuable insights.
</span></a>
</p>
<div class="features-divider"></div>
</div>
</div>
</div>
<div class="home-background"></div>
</section>
<section class="home-practices1">
<div class="home-heading08">
<h2> </h2>
<h2> </h2>
<h2> </h2>
<h2> </h2>
<h2> </h2>
<h2> </h2>
<h2> </h2>
<h2> </h2>
<h2 class="home-text14">Our Advancing medical research.</h2>
<p class="home-text15">
Contribute to the advancement of scientific knowledge and innovation.
</p>
</div>
<div class="home-content02">
<div class="home-grid1">
<!-- <a href="index.html"> -->
<div class="home-practice-wrapper">
<div class="practice-practice">
<div class="practice-heading">
<h2> </h2>
<h2> </h2>
<h2> </h2>
<h2> </h2>
<h2> </h2>
<h2> </h2>
<h2> </h2>
<h2> </h2>
<h2> </h2>
<h3 class="practice-header"><span>Cardiology</span></h3>
<p class="practice-caption">
<span>
Our understanding of cardiovascular health, disorders, and treatments...
</span>
</p>
</div>
<div class="read-more" >
<a href="https://en.wikipedia.org/wiki/Cardiology" class="read-more">
<span class="practice-text">Read more </span>
<img alt="image" src="public/Icons/arrow-2.svg" class="practice-image" />
</a>
</div>
</div>
</div>
</a>
<!-- <a href="index.html"> -->
<div class="home-practice-wrapper1">
<div class="practice-practice">
<div class="practice-heading">
<h2> </h2>
<h2> </h2>
<h2> </h2>
<h2> </h2>
<h2> </h2>
<h2> </h2>
<h2> </h2>
<h2> </h2>
<h2> </h2>
<h3 class="practice-header"><span>Orthopedics</span></h3>
<p class="practice-caption">
<span>
Focus on advancing musculoskeletal health and well-being...
</span>
</p>
</div>
<div class="read-more" >
<a href="https://en.wikipedia.org/wiki/Orthopedic_surgery
" class="read-more">
<span class="practice-text">Read more </span>
<img alt="image" src="public/Icons/arrow-2.svg" class="practice-image" />
</a>
</div>
</div>
</div>
</a>
<!-- <a href="index.html"> -->
<div class="home-practice-wrapper2">
<div class="practice-practice">
<div class="practice-heading">
<h3 class="practice-header"><span>Ophtalmology</span></h3>
<p class="practice-caption">
<span>
To improving vision health and addressing a range of eye-related conditions...
</span>
</p>
</div>
<div class="read-more" >
<a href="https://en.wikipedia.org/wiki/Ophthalmology
" class="read-more">
<span class="practice-text">Read more </span>
<img alt="image" src="public/Icons/arrow-2.svg" class="practice-image" />
</a>
</div>
</div>
</div>
</a>
<!-- <a href="index.html"> -->
<div class="home-practice-wrapper3">
<div class="practice-practice">
<div class="practice-heading">
<h3 class="practice-header"><span>Pediatrics</span></h3>
<p class="practice-caption">
<span>
Our aim is to advance our understanding of child health, growth, development, and diseases...
</span>
</p>
</div>
<div class="read-more" >
<a href="https://en.wikipedia.org/wiki/Pediatrics" class="read-more">
<span class="practice-text">Read more </span>
<img alt="image" src="public/Icons/arrow-2.svg" class="practice-image" />
</a>
</div>
</div>
</div>
</a>
<!-- <a href="index.html"> -->
<div class="home-practice-wrapper4">
<div class="practice-practice">
<div class="practice-heading">
<h3 class="practice-header"><span>Nutrition</span></h3>
<p class="practice-caption">
<span>
Focused on advancing our knowledge of dietary habits, nutritional requirements, and their impact on health...
</span>
</p>
</div>
<div class="read-more" >
<a href="https://en.wikipedia.org/wiki/Nutrition" class="read-more">
<span class="practice-text">Read more </span>
<img alt="image" src="public/Icons/arrow-2.svg" class="practice-image" />
</a>
</div>
</div>
</div>
</a>
<!-- <a href="index.html"> -->
<div class="home-practice-wrapper5">
<div class="practice-practice">
<div class="practice-heading">
<h3 class="practice-header"><span>General</span></h3>
<p class="practice-caption">
<span>
Our general medical research is to advance understanding and knowledge across a broad spectrum of medical disciplines...
</span>
</p>
</div>
<div class="read-more" >
<a href="https://en.wikipedia.org/wiki/Disease" class="read-more">
<span class="practice-text">Read more </span>
<img alt="image" src="public/Icons/arrow-2.svg" class="practice-image" />
</a>
</div>
</div>
</div>
</a>
</div>
<button data-open="practices" class="button button-main">
<a href="https://careersinmedicine.aamc.org/explore-options/specialty-profiles">
<span>All practices</span></a>
</button>
</div>
</section>
<section id="how-it-works" class="home-why">
<!-- YAHA PE BLOCK CHAIN KA HOGA -->
<div class="home-section8">
<div class="home-content06">
<div class="home-header14">
<h2 class="home-heading12">
Let's document the doctor's prescription.
</h2>
<p class="home-capton2">
Security and Data Integrity <b>|</b> Decentralization <b>|</b> Easier Sharing and Interoperability
</p>
</div>
<button class="button button-main home-book3">
<span><a href="index1.html">SIGN IN</a></span>
</button>
</div>
<img
alt="image"
src="public/prescription.jpg"
class="home-image18"
/>
</div>
</section>
<!-- <section class="home-features1">
<div class="home-section7">
<div class="home-content05">
<div class="home-header13">
<h2 class="home-heading11">
Get access to specialty tests and breakthrough information.
</h2>
<p class="home-capton1">
Submit your prescription for review.
</p>
</div>
<div class="read-more">
<span class="home-text18">Find test</span>
<img
alt="image"
src="public/Icons/arrow-2.svg"
class="home-image16"
/>
</div>
</div>
<img alt="image" src="public/lab-1500w.png" class="home-image17" />
</div>
<button class="home-book4 button button-main">
<span>Book a virtual appointment</span>
</button>
</section> -->
<!-- <div class="home-content07">
<div class="home-header15">
<h2 class="home-heading13">
Schedule an in person or virtual appointment today
</h2>
<p class="home-caption8">
Book a face-to-face or virtual appointment now.
</p>
</div>
<div class="home-types">
<a
href="#book"
class="home-book-person button button-main button-white"
>
<span>Book in person appointment</span>
</a>
<button class="button button-main button-white home-book-person1">
<span>Book virtual appointment</span>
</button>
</div>
</div> -->
</section>
<section id="schedule" class="home-schedule">
</section>
<div class="home-search">
<div class="home-heading14">
<h2 class="home-text23">Search diseases & conditions</h2>
<p class="home-text24">
To understand their symptoms, causes, treatments, and preventive measures for informed decision-making and health management.
</p>
</div>
<div class="home-content08">
<div class="home-type-one">
<div class="home-alphabet">
<div data-letter="a" class="letter">
<a href="https://www.1mg.com/all-diseases">
<span class="home-text25">A</span></a>
</div>
<div data-letter="b" class="letter">
<a href="https://www.1mg.com/all-diseases?label=b">
<span class="home-text26">B</span>
</a>
</div>
<div data-letter="c" class="letter">
<a href="https://www.1mg.com/all-diseases?label=c">
<span class="home-text27">C</span></a>
</div>
<div data-letter="d" class="letter">
<a href="https://www.1mg.com/all-diseases?label=d">
<span class="home-text28">D</span></a>
</div>
<div data-letter="e" class="letter">
<a href="https://www.1mg.com/all-diseases?label=e">
<span class="home-text29">E</span></a>
</div>
<div data-letter="f" class="letter">
<a href="https://www.1mg.com/all-diseases?label=f">
<span class="home-text30">F</span></a>
</div>
<div data-letter="g" class="letter">
<a href="https://www.1mg.com/all-diseases?label=g">
<span class="home-text31">G</span></a>
</div>
<div data-letter="h" class="letter">
<a href="https://www.1mg.com/all-diseases?label=h">
<span class="home-text32">H</span></a>
</div>
<div data-letter="i" class="letter">
<a href="https://www.1mg.com/all-diseases?label=i">
<span class="home-text33">I</span></a>
</div>
<div data-letter="j" class="letter">
<a href="https://www.1mg.com/all-diseases?label=j">
<span class="home-text34">J</span></a>
</div>
<div data-letter="k" class="letter">
<a href="https://www.1mg.com/all-diseases?label=k">
<span class="home-text35">K</span></a>
</div>
<div data-letter="l" class="letter">
<a href="https://www.1mg.com/all-diseases?label=l">
<span class="home-text36">L</span></a>
</div>
<div data-letter="m" class="letter">
<a href="https://www.1mg.com/all-diseases?label=">
<span class="home-text37">M</span></a>
</div>
<div data-letter="n" class="letter">
<a href="https://www.1mg.com/all-diseases?label=n">
<span class="home-text38">N</span></a>
</div>
<div data-letter="o" class="letter">
<a href="https://www.1mg.com/all-diseases?label=o">
<span class="home-text39">O</span></a>
</div>
<div data-letter="p" class="letter">
<a href="https://www.1mg.com/all-diseases?label=p">
<span class="home-text40">P</span></a>
</div>
<div data-letter="q" class="letter">
<a href="https://www.1mg.com/all-diseases?label=q">
<span class="home-text41">Q</span></a>
</div>
<div data-letter="r" class="letter">
<a href="https://www.1mg.com/all-diseases?label=r">
<span class="home-text42">R</span></a>
</div>
<div data-letter="s" class="letter">
<a href="https://www.1mg.com/all-diseases?label=s">
<span class="home-text43">S</span></a>
</div>
<div data-letter="t" class="letter">
<a href="https://www.1mg.com/all-diseases?label=t">
<span class="home-text44">T</span></a>
</div>
<div data-letter="u" class="letter">
<a href="https://www.1mg.com/all-diseases?label=u">
<span class="home-text45">U</span></a>
</div>
<div data-letter="v" class="letter">
<a href="https://www.1mg.com/all-diseases?label=v">
<span class="home-text46">V</span></a>
</div>
<div data-letter="w" class="letter">
<a href="https://www.1mg.com/all-diseases?label=w">
<span class="home-text47">W</span></a>
</div>
<div data-letter="x" class="letter">
<a href="https://www.1mg.com/all-diseases?label=x">
<span class="home-text48">X</span></a>
</div>
<div data-letter="y" class="letter">
<a href="https://www.1mg.com/all-diseases?label=y">
<span class="home-text49">Y</span></a>
</div>
<div data-letter="z" class="letter">
<a href="https://www.1mg.com/all-diseases?label=z">
<span class="home-text50">Z</span>
</a>
</div>
</div>
<p class="home-text51">
You don’t know it’s name? Check out symptom checker below
</p>
<div data-teleport="results" class="home-results">
<span class="home-heading15">Results:</span>
<div data-results="letters" class="home-list"></div>
</div>
</div>
<div class="home-type-two">
<div class="home-heading16">
<h3 class="home-text52">Symptom checker</h3>
<p class="home-text53">
Symptom checker is to provide users with a reliable tool to assess and identify potential medical conditions based on the symptoms they input, facilitating informed healthcare decisions and appropriate actions.
</p>
</div>
<div class="home-symptoms">
<div class="home-row">
<div class="symptom">
<a href="https://medlineplus.gov/ency/article/003120.htm">
<span class="home-text54">Abdominal pain</span></a>
</div>
<div class="symptom">
<a href="https://www.healthdirect.gov.au/chest-pain">
<span class="home-text55">Chest pain</span></a>
</div>
<div class="symptom">
<a href="https://medlineplus.gov/ency/patientinstructions/000120.htm">
<span class="home-text56">Constipation</span></a>
</div>
<div class="symptom">
<a href="https://www.pennmedicine.org/for-patients-and-visitors/patient-information/conditions-treated-a-to-z/cough">
<span class="home-text57">Cough</span></a>
</div>
<div class="symptom">
<a href="https://www.mountsinai.org/health-library/symptoms/breathing-difficulty#:~:text=If%20your%20brain%2C%20muscles%2C%20or,of%20the%20lungs%20(pulmonary%20embolism)">
<span class="home-text58">Breath difficulty</span></a>
</div>
</div>
<div class="home-row1">
<div class="symptom">
<a href="https://my.clevelandclinic.org/health/symptoms/17690-red-eye">
<span class="home-text59">Red eye</span></a>
</div>
<div class="symptom">
<a href="https://www.healthline.com/health/foot-pain#treatment">
<span class="home-text60">Foot pain</span></a>
</div>
<div class="symptom">
<a href="https://www.mayoclinic.org/symptom-checker/foot-swelling-or-leg-swelling-in-adults-adult/related-factors/itt-20009075">
<span class="home-text61">Foot swelling</span></a>
</div>
<div class="symptom">
<a href="https://my.clevelandclinic.org/health/diseases/9639-headaches">
<span class="home-text62">Headache</span></a>
</div>
<div class="symptom">
<a href="https://www.webmd.com/heart-disease/what-causes-heart-palpitations">
<span class="home-text63">Heart palpitation</span></a>
</div>
</div>
<div class="home-row2">
<div class="symptom">
<a href="https://my.clevelandclinic.org/health/symptoms/21207-knee-pain">
<span class="home-text64">Knee pain</span></a>
</div>
<div class="symptom">
<a href="https://my.clevelandclinic.org/health/symptoms/21118-hip-pain">
<span class="home-text65">Hip pain</span></a>
</div>
<div class="symptom">
<a href="https://my.clevelandclinic.org/health/diseases/7936-lower-back-pain">
<span class="home-text66">Low back pain</span></a>
</div>
<div class="symptom">
<a href="https://my.clevelandclinic.org/health/diseases/17980-nasal-congestion">
<span class="home-text67">Nasal congestion</span></a>
</div>
<div class="symptom">
<a href="https://my.clevelandclinic.org/health/symptoms/21179-neck-pain">
<span class="home-text68">Neck pain</span></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- <section id="book" class="home-book5">
<div class="home-heading17">