-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
975 lines (768 loc) · 32.2 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
<!doctype html>
<html lang="en">
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1" />
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<!-- Title of Website -->
<title>MEDIHIST- –Revolutionising Healthcare</title>
<meta name="description"
content="Medihist is a comprehensive solution just like Aadhaar to your personal medical record needs. A project for Rajasthan SSEP'18"/>
<meta name="keywords"
content="Medihist, Landing page, Healthcare, fitness, database, health records, Android app, Doctors, Patients, Platform "/>
<meta name="author" content="Egotype">
<!-- Favicon -->
<link rel="icon" href="favicon.png" type="image/png">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/plugins/bootstrap.min.css">
<!-- Font Icons -->
<link rel="stylesheet" href="css/icons/linea/styles.css">
<link rel="stylesheet"
href="css/icons/font-awesome/css/font-awesome.min.css">
<!-- Google Fonts -->
<link rel="stylesheet" type="text/css"
href="http://fonts.googleapis.com/css?family=Lato:300,400,700,900,300italic,400italic,700italic,900italic">
<!-- Plugins CSS -->
<link rel="stylesheet" href="css/plugins/loaders.min.css">
<link rel="stylesheet" href="css/plugins/owl.carousel.min.css">
<!-- SLIDER REVOLUTION 5.0 CSS SETTINGS -->
<link rel="stylesheet" type="text/css" href="revolution/css/settings.css" media="screen"/>
<link rel="stylesheet" type="text/css" href="revolution/css/layers.css">
<link rel="stylesheet" type="text/css" href="revolution/css/navigation.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/switcher.css">
<link rel="alternate stylesheet" href="css/color/turquoise.css" title="turquoise"/>
<link rel="alternate stylesheet" href="css/color/green-light.css" title="green-light"/>
<link rel="alternate stylesheet" href="css/color/green.css" title="green"/>
<link rel="alternate stylesheet" href="css/color/blue-dark.css" title="blue-dark"/>
<link rel="alternate stylesheet" href="css/color/violet.css" title="violet"/>
<link rel="alternate stylesheet" href="css/color/violet-red.css" title="violet-red"/>
<link rel="alternate stylesheet" href="css/color/pink.css" title="pink"/>
<link rel="alternate stylesheet" href="css/color/red.css" title="red"/>
<link rel="alternate stylesheet" href="css/color/orange.css" title="orange"/>
<link rel="alternate stylesheet" href="css/color/yellow.css" title="yellow"/>
<link rel="alternate stylesheet" href="css/color/gold.css" title="gold"/>
<!-- Responsive CSS -->
<link rel="stylesheet" href="css/responsive.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body data-target="#main-navbar">
<!-- Preloader -->
<div class="loader bg-grey">
<div class="loader-inner ball-pulse ball-pulse-color">
<div></div>
<div></div>
<div></div>
</div>
</div>
<!-- Main -->
<div id="page" class="dark-version">
<!-- ============================
Navigation Header
================================= -->
<header id="nav" class="dark-nav-colored-hero">
<!-- Sticky Navigation -->
<!-- for static Navbar: remove navbar-fixed-top; add navbar-static-top and navbar-dark -->
<nav class="navbar navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<!-- Menu Button for Mobile Devices -->
<button type="button" class="collapse navbar-toggle navbar-icon" data-toggle="collapse"
data-target="#navbar-collapse">
<span></span>
<span></span>
<span></span>
</button>
<!-- Logo -->
<a href="#page" class="navbar-brand logo-wg smooth-scroll"><span></span></a>
</div>
<!-- /End Navbar hero -->
<div class="collapse navbar-collapse-md" id="navbar-collapse">
<!-- Navigation Links -->
<ul class="nav navbar-nav navbar-left">
<li><a href="#services" class="smooth-scroll">Services</a></li>
<li><a href="#function" class="smooth-scroll">Function</a></li>
<li><a href="#features" class="smooth-scroll">Features</a></li>
<li><a href="#gallery" class="smooth-scroll">Gallery</a></li>
<li><a href="#newsletter" class="smooth-scroll">Subscribe</a></li>
</ul>
<!-- Social Links -->
<ul class="nav navbar-nav navbar-right">
<li>
<ul class="social">
<li><a class="btn-circle btn-circle-sm btn-grey" href="https://twitter.com/"
target="_blank"><i
class="fa fa-twitter"></i></a>
</li>
<li><a class="btn-circle btn-circle-sm btn-grey"
href="https://www.facebook.com/"
target="_blank"><i
class="fa fa-facebook"></i></a>
</li>
<li><a class="btn-circle btn-circle-sm btn-grey"
href="https://www.linkedin.com/"
target="_blank"><i
class="fa fa-linkedin"></i></a></li>
</ul>
</li>
</ul>
<!-- /End Navigation Links -->
</div>
<!-- /End Navbar Collapse -->
</div>
</nav>
<!-- /END Sticky Navigation -->
</header>
<!-- ============================
Hero Section
================================= -->
<section id="hero-solid" class="hero-p-v2 pos-relative text-white">
<!-- Gradient Overlay -->
<div class="section-overlay bg-color-dark opacity-90"></div>
<!-- /End Color Overlay -->
<div class="container wrapper-h-xs-lg">
<div class="row vert-middle-sm">
<div class="col-sm-6 text-center-sm wrapper-v-lg">
<!-- Headline -->
<h1>We are UIDAI for healthcare industry</h1>
<!-- /End Headline -->
<!-- Description -->
<p>Medihist is a comprehensive solution just like Aadhaar to your personal medical record needs.</p>
<!-- /End Description -->
<!-- Button -->
<div class="wrapper-v-lg">
<a href="#download" class="btn btn-grey smooth-scroll" role="button"> App launching soon. </a>
</div>
<!-- /End Button -->
</div>
<!-- Hero Smartphone Images -->
<div class="col-sm-6 wrapper-v-lg">
<div class="row">
<div class="col-sm-10 col-sm-offset-1 pos-relative">
<div class="img-top-bottom">
<img src="images/hero-devices-3-1.png" class="img-responsive" alt="">
</div>
<img src="images/hero-devices-3-2.png"
class="img-responsive reveal-left-20" alt="">
</div>
</div>
</div>
<!-- /End Hero Smartphone Image -->
</div>
</div>
</section>
<!-- ============================
Services Section
================================= -->
<section id="services" class="bg-grey section-p-lg">
<div class="container wrapper-h-xs-lg reveal-bottom-opacity">
<div class="row">
<!-- Headline -->
<div class="col-sm-8 col-sm-offset-2 wrapper-v-lg text-center">
<h2 class="text-center">What we do?</h2>
</div>
<!-- /End Headline -->
<!-- Services Block 1 -->
<div class="col-sm-6 col-lg-3 wrapper-v-lg text-center">
<!-- Icon -->
<div class="icon-lg icon-color">
<i class="fa fa-users fa-5x" aria-hidden="true"></i>
</div>
<!-- /End Icon -->
<!-- Description -->
<h4>Services-for individuals</h4>
<p>
We provide a collaborative platform where doctors/hospitals can share prescriptions/ reports etc through our platform.
</p>
<!-- /End Description -->
</div>
<!-- /End Services Block 1 -->
<!-- Services Block 2 -->
<div class="col-sm-6 col-lg-3 wrapper-v-lg text-center">
<!-- Icon -->
<div class="icon-lg icon-color">
<i class="fa fa-user-md fa-5x"></i>
</div>
<!-- /End Icon -->
<!-- Description -->
<h4>Services-for doctors</h4>
<p>
A service for doctors, nurses etc. which shall give an overview of patient and their medical history relevant to their <strong>current diagnostics</strong>(only).
</p>
<!-- /End Description -->
</div>
<!-- /End Services Block 2 -->
<!-- Services Block 3 -->
<div class="col-sm-6 col-lg-3 wrapper-v-lg text-center">
<!-- Icon -->
<div class="icon-lg icon-color">
<i class="fa fa-database fa-5x" aria-hidden="true"></i>
</div>
<!-- /End Icon -->
<!-- Description -->
<h4>Database </h4>
<p>
A data service which shall integrate existing pools of data into a common pool to be accessible by clients.
</p>
<!-- /End Description -->
</div>
<!-- /End Services Block 3 -->
<!-- Services Block 4 -->
<div class="col-sm-6 col-lg-3 wrapper-v-lg text-center">
<!-- Icon -->
<div class="icon-lg icon-color">
<i class="fa fa-ticket fa-5x" aria-hidden="true"></i>
</div>
<!-- /End Icon -->
<!-- Description -->
<h4>Medihist ID</h4>
<p>
A Medihist ID is generated for every user. In case of any medical emergency this ID will tell doctors and medical professionals about all the necessary medical history of the particular user.
</p>
<!-- /End Description -->
</div>
<!-- /End Services Block 4 -->
</div>
</div>
</section>
<!-- ============================
Function Section
================================= -->
<section id="function" class="bg-darkgrey section-p-lg">
<div class="container wrapper-h-xs-lg reveal-bottom-opacity">
<div class="row vert-middle-md">
<!-- Function Smartphone Image -->
<div class="col-md-6 col-md-offset-0 col-sm-8 col-sm-offset-2 wrapper-v-lg">
<div class="function-device-shadow">
<img src="images/function-1-device.png" class="img-responsive reveal-top-20"
alt="">
</div>
</div>
<!-- /End Function Smartphone Image -->
<!-- Function Block -->
<div class="col-md-6 col-sm-12 wrapper-v-lg">
<!-- Headline -->
<h2>How it works</h2>
<!-- /End Headline -->
<!-- Description -->
<p>Keep track of your important health information all in one place. Get started using MEDIHIST TODAY.
</p>
<!-- /End Description -->
<div class="row">
<!-- Function Subblock -->
<div class="col-xs-6 wrapper-v-lg">
<!-- Button -->
<div class="wrapper-v-lg">
<a href="#" class="btn btn-color">For Medical professionals</a>
</div>
<!-- Button -->
<!-- Description -->
<p>Access timely information about your patients such as shared health summaries, discharge summaries, prescription and dispense records, pathology reports and diagnostic imaging reports.
</p>
<!-- /End Description -->
</div>
<!-- /End Function Subblock -->
<!-- Function Subblock -->
<div class="col-xs-6 wrapper-v-lg">
<!-- Button -->
<div class="wrapper-v-lg">
<a href="#" class="btn btn-color">For Individuals</a>
</div>
<!-- Button -->
<!-- Description -->
<p>Get online summary of your health information. You control what goes into your record, and who is allowed to access it. Share your health information with doctors, hospitals and other healthcare providers from anywhere, any time.
</p>
<!-- /End Description -->
</div>
<!-- /End Function Subblock -->
</div>
</div>
<!-- Function -->
</div>
</div>
</section>
<!-- ============================
Features Section
================================= -->
<section id="features" class="bg-grey section-p-lg">
<div class="container wrapper-h-xs-lg reveal-bottom-opacity">
<div class="row">
<!-- Headline -->
<div class="col-sm-8 col-sm-offset-2 wrapper-v-lg text-center">
<h2>App Features</h2>
</div>
<!-- /End Headline -->
</div>
<div class="row vert-middle-md">
<!-- Features Left -->
<div class="col-md-3 col-sm-6 features-left wrapper-v-md wrapper-h-xs-lg">
<div class="reveal-left-10">
<!-- Icon -->
<div class="icon-md icon-color">
<i class="fa fa-ticket fa-3x" aria-hidden="true"></i>
</div>
<!-- /End Icon -->
<!-- Description -->
<h4>MEDIHIST ID</h4>
<p> A unique Medihist ID will be provided to each user. That will contain all the relevent information for a emergency.</p>
<!-- /End Description -->
<!-- Icon -->
<div class="icon-md icon-color">
<i class="fa fa-database fa-3x" aria-hidden="true"></i>
</div>
<!-- /End Icon -->
<!-- Description -->
<h4> Easy management of your data</h4>
<p> Now managing your health records is easier than ever </p>
<!-- /End Description -->
<!-- Icon -->
<div class="icon-md icon-color">
<i class="fa fa-clock-o fa-3x" aria-hidden="true"></i>
</div>
<!-- /End Icon -->
<!-- Description -->
<h4> Prescriptions tracking</h4>
<p>Have a habit of forgetting when to take your medicine? We've got you covered.</p>
<!--/End Description -->
</div>
</div>
<!-- /End Features Left -->
<!-- Features Right -->
<div class="col-md-3 col-md-push-6 col-sm-6 wrapper-v-md features-right wrapper-h-xs-lg">
<div class="reveal-right-10">
<!-- Icon -->
<div class="icon-md icon-color">
<i class="fa fa-building-o fa-3x" aria-hidden="true"></i>
</div>
<!-- /End Icon -->
<!-- Description -->
<h4> Book an appointment </h4>
<p> Book an appointment with your doctor or even a pool of doctors associated with us with just a click. </p>
<!-- /End Description -->
<!-- Icon -->
<div class="icon-md icon-color">
<i class="fa fa-comments fa-3x" aria-hidden="true"></i>
</div>
<!-- /End Icon -->
<!-- Description -->
<h4> Consultation </h4>
<p> Still have a query for your doctor that you forgot to ask during your visit. Ask your queries directly with our application.</p>
<!-- /End Description -->
<!-- Icon -->
<div class="icon-md icon-color">
<i class="icon icon-ecommerce-gift"></i>
</div>
<!-- /End Icon -->
<!-- Description -->
<h4>More Features</h4>
<p> This is merely the begining we are constantly brainstorming and working hard to provide you more and more features. </p>
<!-- /End Description -->
</div>
</div>
<!-- /End Features Right -->
<!-- Features Smartphone Image -->
<div
class="col-md-6 col-md-offset-0 col-md-pull-3 col-sm-8 col-sm-offset-2 text-center wrapper-v-lg">
<div class="row">
<div class="col-lg-10 col-lg-offset-1 wrapper-h-xs-lg">
<img src="images/features-device.png"
class="img-responsive reveal-bottom-20" alt="">
</div>
</div>
</div>
<!-- /End Features Smartphone Image -->
</div>
</div>
</section>
<!-- ============================
Download Section
================================= -->
<!--
<section id="download" class="bg-darkgrey section-p-lg">
<div class="container wrapper-h-xs-lg reveal-bottom-opacity">
<div class="row">
<div class="col-sm-8 col-sm-offset-2 wrapper-v-lg text-center">
<h2>Download App</h2>
<p>Itatendam utentotatiat volupta expero ma volorum quiam vel estioreped erae rendipsa
nulluptur ressunt eatistis etur, eatisti aut militat. Ate reicipid quidestia vent.</p>
</div>
<div class="col-sm-6 col-sm-offset-3 wrapper-v-lg text-center">
<a href="#" class="btn btn-color smooth-scroll">
<i class="fa fa-apple"></i>App Store</a>
<a href="#" class="btn btn-color smooth-scroll">
<i class="fa fa-android"></i>Play Store</a>
</div>
</div>
<div class="col-md-8 col-md-offset-2 wrapper-v-lg">
<div class="download-device-shadow">
<img src="images/download-device.png" class="img-responsive reveal-top-20"
alt="">
</div>
</div>
</div>
</section>
-->
<!-- ============================
Video Section
================================= -->
<section id="video" class="bg-darkgrey section-p-lg">
<div class="container wrapper-h-xs-lg reveal-bottom-opacity">
<div class="row">
<!-- Headline & Description -->
<div class="col-sm-8 col-sm-offset-2 wrapper-v-lg text-center">
<h2>Watch Video</h2>
<p>MEDIHIST is an application that puts you at the center of your health, securely consolidating all your health information in one place, giving you secure access to all your records. It allows you to create your very own <strong>personal health journal</strong> , so no details are lost along the way.</p>
</div>
<!-- /End Headline & Description -->
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2 wrapper-v-lg text-center">
<div class="bg-color-dark">
<!-- Video: Insert Vimeo-URL or Youtube-URL; Use attribut data-url -->
<div id="video-embed" class="video-wrapper" data-url="https://www.youtube.com/watch?v=oUzn5-9QWjg">
<div class="video-overlay"></div>
<div class="playbutton">
<div class="icon-lg">
<i class="link-white icon icon-music-play-button"></i>
</div>
</div>
</div>
<!-- /End Video -->
</div>
</div>
</div>
</div>
</section>
<!-- ============================
Gallery Section
================================= -->
<section id="gallery" class="bg-grey section-p-lg">
<div class="container wrapper-h-xs-lg reveal-bottom-opacity">
<div class="row">
<!-- Headline & Description -->
<div class="col-md-8 col-md-offset-2 wrapper-v-lg text-center">
<h2>Screenshots</h2>
<p>A glimpse of the UI of our Android app that shall be launched soon. More features to be added on the way.</p>
<p>We are constantly improving hence the UI/UX are subjected to change with time.</p>
</div>
<!-- /End Headline & Description -->
<div class="col-md-12 wrapper-v-lg">
<!-- Headline & Description -->
<div class="gallery-slider owl-carousel owl-theme">
<!-- Gallery App Image 1 -->
<div class="item">
<img src="images/gallery-app-1.jpg" class="img-responsive" alt="">
</div>
<!-- /End Gallery App Image 1 -->
<!-- Gallery App Image 2 -->
<div class="item">
<img src="images/gallery-app-2.jpg" class="img-responsive" alt="">
</div>
<!-- /End Gallery App Image 2 -->
<!-- Gallery App Image 3 -->
<div class="item">
<img src="images/gallery-app-3.jpg" class="img-responsive" alt="">
</div>
<!-- /End Gallery App Image 3 -->
<!-- Gallery App Image 4 -->
<div class="item">
<img src="images/gallery-app-4.jpg" class="img-responsive" alt="">
</div>
<!-- /End Gallery App Image 4 -->
<!-- Gallery App Image 5 -->
<div class="item">
<img src="images/gallery-app-5.jpg" class="img-responsive" alt="">
</div>
<!-- /End Gallery App Image 5 -->
<!-- Gallery App Image 6 -->
<!--
<div class="item">
<img src="images/gallery-app-6.jpg" class="img-responsive" alt="">
</div>
-->
<!-- /End Gallery App Image 6 -->
</div>
</div>
</div>
</div>
</section>
<section id="services" class="bg-grey section-p-lg">
<div class="container wrapper-h-xs-lg reveal-bottom-opacity">
<div class="row">
<!-- Headline -->
<div class="col-sm-8 col-sm-offset-2 wrapper-v-lg text-center">
<h2 class="text-center"> Team </h2>
</div>
<!-- /End Headline -->
<!-- Services Block 1 -->
<div class="col-sm-6 col-lg-3 wrapper-v-lg text-center">
<img class="" src="images/chaitanyagiri.jpg" height="100px" width="140px"/>
<!-- Icon -->
<div class="icon-lg icon-color">
</div>
<!-- /End Icon -->
<!-- Description -->
<h4> Chaitanya Giri</h4>
<p>
Javascript developer, Platform developer, Full stack developer
</p>
<!-- /End Description -->
</div>
<!-- /End Services Block 1 -->
<!-- Services Block 2 -->
<div class="col-sm-6 col-lg-3 wrapper-v-lg text-center">
<img class="" src="images/shikha.jpg" width="100px"/>
<!-- Icon -->
<div class="icon-lg icon-color">
</div>
<!-- /End Icon -->
<!-- Description -->
<h4>Shikha Khatry</h4>
<p>
Marketing Lead, Android developer, Human resource lead
</p>
<!-- /End Description -->
</div>
<!-- /End Services Block 2 -->
<!-- Services Block 3 -->
<div class="col-sm-6 col-lg-3 wrapper-v-lg text-center">
<img class="" src="images/siddhart.jpg" width="100px"/>
<!-- Icon -->
<div class="icon-lg icon-color">
</div>
<!-- /End Icon -->
<!-- Description -->
<h4>Siddhart Goel </h4>
<p>
Platform developer, Full stack developer, Python Developer
</p>
<!-- /End Description -->
</div>
<!-- /End Services Block 3 -->
<!-- Services Block 4 -->
<div class="col-sm-6 col-lg-3 wrapper-v-lg text-center">
<img class="" src="images/shubhi.jpg" width="100px"/>
<!-- Icon -->
<div class="icon-lg icon-color">
</div>
<!-- /End Icon -->
<!-- Description -->
<h4> Shubhi Agarwal </h4>
<p>
Content lead, PR head, Marketing lead and Front end developer
</p>
<!-- /End Description -->
</div>
<!-- /End Services Block 4 -->
</div>
</div>
</section>
<!-- ============================
Newsletter Section
================================= -->
<section id="newsletter" class="newsletter-image section-p-lg pos-relative">
<div class="section-overlay bg-dark opacity-90"></div>
<div class="container wrapper-h-xs-lg reveal-bottom-opacity">
<div class="row">
<!-- Headline -->
<div class="col-sm-8 col-sm-offset-2 wrapper-v-lg text-center">
<h2>Subscribe to our Newsletter<br>To stay connected and get amazing offers on MEDIHIST.</h2>
</div>
<!-- /End Headline -->
<div class="col-md-4 col-md-offset-4 col-sm-8 col-sm-offset-2 wrapper-v-lg">
<!-- Newsletter-Form:
alternative newsletter form via email;
write your email in newsletter-process.php and use:
<form action="php/newsletter-process.php" id="newsletter-form" class="wrapper-h-xs-md" method="post"> insted of
<form id="mc-form"> -->
<form id="mc-form" accept-charset="UTF-8" action="https://usebasin.com/f/56ed7f983fa7" method="POST" class="wrapper-h-xs-md">
<!-- Input & Submit-Button -->
<div class="form-group input-group">
<input type="email" id="email" class="form-control form-control-silver" name="email"
placeholder="Email">
<span class="input-group-btn">
<button type="submit" class="btn btn-border-silver"><i
class="fa fa-paper-plane"></i></button>
</span>
</div>
<!-- /End Input & Submit-Button -->
<!-- Message -->
<div id="message-newsletter" class="message text-center">
<span class="message-icon"><i class="fa fa-info"></i></span>
<span><label class="message-text" for="email"></label></span>
</div>
<!-- /End Message -->
</form>
<!-- /End Newsletter-Form -->
</div>
<!-- Description -->
<div class="col-sm-6 col-sm-offset-3 wrapper-v-lg text-center">
<p>
<small>We are aiming at the tens of thousands of healthcare practitioners, public and private hospitals, community pharmacies and other healthcare providers to get connected to MEDIHIST.
</small>
</p>
</div>
<!-- /End Description -->
</div>
</div>
</section>
<!-- ============================
Company Section
================================= -->
<section id="company" class="bg-grey section-p-sm">
<div class="container reveal-bottom-opacity">
<div class="row">
<div class="col-md-10 col-md-offset-1 col-md-0 col-sm-offset-0 wrapper-v-lg">
<div class="row">
<!-- Contact Details -->
<div class="col-sm-4 wrapper-v-sm block-line">
<!-- Icon -->
<div class="block icon-md icon-color">
<i class="icon icon-basic-geolocalize-01"></i>
</div>
<!-- /End Icon -->
<!-- Address -->
<div class="block text-left">
<p>LNMIIT,<br>
Jaipur, Raj</p>
</div>
<!-- /End Address -->
</div>
<!-- /End Contact Details -->
<!-- Contact Details -->
<div class="col-sm-4 wrapper-v-sm block-line">
<!-- Icon -->
<div class="block icon-md icon-color">
<i class="icon icon-basic-mail"></i>
</div>
<!-- /End Icon -->
<!-- Address -->
<div class="block text-left">
<p><a class="link-silver" href="mailto:[email protected]">[email protected]</a></p>
</div>
<!-- /End Address -->
</div>
<!-- /End Contact Details -->
<!-- Contact Details -->
<div class="col-sm-4 wrapper-v-sm block-line">
<!-- Icon -->
<div class="block icon-md icon-color">
<i class="icon icon-basic-smartphone"></i>
</div>
<!-- /End Icon -->
<!-- Address -->
<div class="block text-left">
<p>Ph.<a class="link-silver" href="tel:012345678991">+91-9424108852</a><br>
Ph. <a class="link-silver" href="tel:012345678991">+91-7742962020</a></p>
</div>
<!-- /End Address -->
</div>
<!-- /End Contact Details -->
</div>
</div>
</div>
</div>
</section>
<!-- ============================
Footer
================================= -->
<footer id="footer" class="bg-dark section-p-sm">
<div class="container">
<div class="row">
<!-- Company Details -->
<div class="col-md-6 wrapper-v-sm text-center-md">
<p class="text-light">
<a class="link-silver" href="#">Terms</a>
<span class="separator">|</span>
<a class="link-silver" href="#">Imprint</a>
<span class="separator">|</span>
<a class="link-silver" href="#">Privacy
Policy</a><br>
© 2018 Medihist.
All Rights Reserved.
</p>
</div>
<!-- /End Company Details -->
<!-- Buttons Social -->
<div class="col-md-6 wrapper-v-sm text-right text-center-md">
<ul class="social">
<li>
<a class="btn-circle btn-circle-sm btn-color" href="https://facebook.com/"
target="_blank"><i
class="fa fa-facebook"></i></a></li>
<li><a class="btn-circle btn-circle-sm btn-color" href="https://twitter.com/"
target="_blank"><i
class="fa fa-twitter"></i></a></li>
<li><a class="btn-circle btn-circle-sm btn-color" href="https://plus.google.com/"
target="_blank"><i
class="fa fa-google-plus"></i></a></li>
<li><a class="btn-circle btn-circle-sm btn-color" href="https://instagram.com/"
target="_blank"><i
class="fa fa-instagram"></i></a></li>
<li><a class="btn-circle btn-circle-sm btn-color" href="https://youtube.com/"
target="_blank"><i
class="fa fa-youtube"></i></a></li>
<li><a class="btn-circle btn-circle-sm btn-color" href="https://vimeo.com/"
target="_blank"><i
class="fa fa-vimeo"></i></a></li>
<li><a class="btn-circle btn-circle-sm btn-color" href="https://www.linkedin.com/"
target="_blank"><i
class="fa fa-linkedin"></i></a></li>
<li><a class="btn-circle btn-circle-sm btn-color" href="https://www.pinterest.com/"
target="_blank"><i
class="fa fa-pinterest"></i></a></li>
<li><a class="btn-circle btn-circle-sm btn-color" href="https://www.xing.com/"
target="_blank"><i
class="fa fa-xing"></i></a></li>
</ul>
</div>
<!-- /End Buttons Social -->
</div>
</div>
</footer>
</div>
<!-- /End Main -->
<!-- Back to Top Button -->
<a href="#page" class="btn-circle btn-circle-lg btn-color btn-top smooth-scroll">
<i class="fa fa-angle-up"></i>
</a>
<!-- /End Back to Top Button -->
<!-- Scripts -->
<script src="js/plugins/jquery1.11.2.min.js"></script>
<script src="js/plugins/bootstrap.min.js"></script>
<script src="js/plugins/circles.min.js"></script>
<script src="js/plugins/owl.carousel.min.js"></script>
<script src="js/plugins/scrollreveal.min.js"></script>
<script src="js/plugins/jquery.ajaxchimp.min.js"></script>
<script src="js/plugins/contact-form.js"></script>
<script src="js/plugins/newsletter-form.js"></script>
<script src="js/plugins/styleswitcher.js"></script>
<script src="js/plugins/embedvid.js"></script>
<script src="js/plugins/jquery.youtubebackground.js"></script>
<script src="js/plugins/jquery.backgroundvideo.min.js"></script>
<script src="js/plugins/prefixfree.min.js"></script>
<script src="js/plugins/ua-parser.min.js"></script>
<script src="js/plugins/jquery.cookie.js"></script>
<script src="js/plugins/modernizr.js"></script>
<!-- Custom Script -->
<script src="js/custom.js"></script>
<!-- Google Analytics -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-119188374-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-119188374-2');
</script>
</body>
</html>