-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
776 lines (660 loc) · 24.1 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
<!DOCTYPE html>
<html>
<head>
<title> Unity Hospital | Home </title>
<!-- Web Fonts -->
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:400,300,600&subset=cyrillic,latin">
<!-- CSS Global Compulsory -->
<link rel="stylesheet" href="assets/plugins/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<!-- CSS Header and Footer -->
<link rel="stylesheet" href="assets/css/header.css">
<link rel="stylesheet" href="assets/css/footer.css">
<!-- CSS Implementing Plugins -->
<link rel="stylesheet" href="assets/plugins/line-icons-pro/styles.css">
<link rel="stylesheet" href="assets/plugins/line-icons/line-icons.css">
<link rel="stylesheet" href="assets/plugins/font-awesome/css/font-awesome.min.css">
<!-- CSS Customization -->
<link rel="stylesheet" href="assets/css/custom.css">
<meta name="description" content="This is a madical html template made by codewithsadee">
<!--
- favicon
-->
<link rel="shortcut icon" href="./favicon.svg" 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">
<!--
- preload images
-->
<link rel="preload" as="image" href="./assets/images/hero-banner.png">
<link rel="preload" as="image" href="./assets/images/hero-bg.png">
</head>
<body>
<div class="wrapper">
<!--=== Header v1 ===-->
<div class="header-v1">
<!-- Topbar -->
<div class="topbar-v1">
<div class="container">
<div class="row">
<div class="col-md-6">
<ul class="list-inline top-v1-contacts">
<li>
<i class="fa fa-envelope"></i> Email: unityhospital@gmail.com
</li>
<li>
<i class="fa fa-phone"></i> Contact no : 88666 00555
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- End Topbar -->
<!-- Navbar -->
<div class="navbar mega-menu" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="res-container">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-responsive-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="navbar-brand">
<a href="index.html">
<img src="assets/img/logo/unity_white.jpg" alt="Logo">
</a>
</div>
</div><!--/end responsive container-->
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-responsive-collapse">
<div class="res-container">
<ul class="nav navbar-nav">
<!-- Collect the nav links, forms, and other content for toggling -->
<!-- Home -->
<li class="mega-menu-fullwidth">
<a href="index.html" >
HOME
</a>
</li>
<!-- End Home-->
<!-- About Us -->
<li class="mega-menu-fullwidth">
<a href="about.html" >
ABOUT US
</a>
</li>
<!-- End About us -->
<!-- Doctors -->
<li class="mega-menu-fullwidth">
<a href="doctors.html" >
DOCTORS
</a>
</li>
<!-- End Doctors -->
<!-- Gallery -->
<li class="mega-menu-fullwidth">
<a href="gallery.html" >
GALLERY
</a>
</li>
<!-- End Gallery -->
<!-- Blog -->
<li class="mega-menu-fullwidth">
<a href="blog.html" >
BLOGS
</a>
</li>
<!-- End Blog -->
<!-- Contact Us -->
<li class="mega-menu-fullwidth">
<a href="contact.html" >
CONTACT US
</a>
</li>
<!-- End Contact us -->
<!-- Registration -->
<li class="mega-menu-fullwidth">
<a href="registration.html" >
REGISTRATION
</a>
</li>
<!-- End registration -->
<!-- login -->
<li class="mega-menu-fullwidth">
<a href="login.html" >
LOGIN
</a>
</li>
<!-- End login -->
<!-- Appointment -->
<li class="mega-menu-fullwidth">
<a href="appointment.html">
BOOK APPOINTMENT
</a>
</li>
<!-- End Appointment -->
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- End Navbar -->
<!-- background -->
<main>
<article>
<!--
- #HERO
-->
<section class="section hero" style="background-image: url('./assets/img/hero-bg.png')" aria-label="home">
<div class="container">
<div class="hero-content">
<p class="hero-subtitle has-before" data-reveal="left">Welcome To Unity Care</p>
<h1 class="headline-lg hero-title" data-reveal="left">
Find Nearest <br>
Doctor.
</h1>
<div class="hero-card" data-reveal="left">
<p class="title-lg card-text">
Search doctors. clinics. hospitals. etc.
</p>
<div class="wrapper">
<div class="input-wrapper title-lg">
<input type="text" name="location" placeholder="Locations" class="input-field">
<ion-icon name="location"></ion-icon>
</div>
<button class="btn has-before">
<ion-icon name="search"></ion-icon>
<span class="span title-md">Find Now</span>
</button>
</div>
</div>
</div>
<div class="hero-banner">
<img src="./assets/img/hero-banner.png" width="590" height="517" loading="eager" alt="hero banner"
class="w-100">
</div>
</div>
</section>
</article>
</main>
<!--=== Welcome to Unity===-->
<div class="container content-md welcomeSection">
<div class="row section1">
<div class="col-md-6" style="margin-bottom: 40px;" style="border:2px solid black; background: rgb(0, 17, 128);">
<h2 class="title-v2">WELCOME TO <span style="color: #2c80c0;"> UNITY </span></h2>
<p style="text-align: justify; font-size: 14px;">A state-of-the art modern facility in the heart of the Gujarat state, it is spread over 10 acres and has a built-up area of over 440000 square feet. Currently the hospital has 300+ beds with a capacity to expand to 400 beds.</p>
<p style="text-align: justify; font-size: 14px;">Unity Hospital, Ahmedabad is a tertiary care flagship unit of the Unity Hospitals Group.The Hospital focuses on centres of excellence like Cardiac Sciences, Neuro Sciences, Orthopaedics including Knee Replacement, Hip Replacement and Spine Surgery, Cancer, Emergency Medicine and Solid Organ Transplants besides the complete range of more than 35 allied medical disciplines under the same roof.</p>
<p style="text-align: justify; font-size: 14px;"> Unity Hospital, Ahmedabad provides holistic healthcare that includes prevention, treatment, rehabilitation and health education for patients, their families and clients by touching their lives.</p> <br>
<a href="about.html" class="btn-u btn-brd btn-brd-hover">Read More</a>
</div>
<div class="col-md-6 overflow-h">
<img style="border-radius: 50px; margin-left: 30px;" src="assets/img/bg/1.jpg" alt="">
</div>
</div>
</div>
<!--=== End About Us ===-->
<!-- Specialities -->
<div class="container" style="margin-top: 50px;">
<div class="headline-center" style="margin-bottom: 60px;">
<h2>Our Specialities</h2>
<div class="line"></div>
<p>Unity is a multi/super speciality hospital with state-of-the-art facilities & treatments at an affordable cost, encompassing wide spectrum of accurate diagnostics and elegant therapeutics created on the philosophical edifice of patient and ethical centricity ensuring humanistic dispensation. </p>
</div><!--end Spciallities-->
<div class="row" style="margin-bottom: 40px;">
<div class="col-md-4">
<div class="content-boxes-v5" style="margin-bottom: 30px;">
<i class="icon-medical-005" style="border-radius: 50%;"></i>
<div class="overflow-h">
<h3 class="no-top-space">24/7 Ambulance support</h3>
<p>24 Hours Ambulance Service, Emergency Ambulance Service Providers in India.</p>
</div>
</div>
<div class="content-boxes-v5" style="margin-bottom: 30px;">
<i style="border-radius: 50%;" class="icon-medical-054"></i>
<div class="overflow-h">
<h3 class="no-top-space">LASIK Vision Correction Treatment </h3>
<p>We have LASIK Vision treatment which is the latest in the world.</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="content-boxes-v5" style="margin-bottom: 30px;">
<i style="border-radius: 50%;" class="icon-medical-042"></i>
<div class="overflow-h">
<h3 class="no-top-space">Dedicated Stroke Centre</h3>
<p>We specially have dedicated stroke centre which is very handy in critical situations.</p>
</div>
</div>
<div class="content-boxes-v5" style="margin-bottom: 30px;">
<i style="border-radius: 50%;" class="icon-medical-019"></i>
<div class="overflow-h">
<h3 class="no-top-space">17 State-of-the-art Operation Theatres</h3>
<p>These Operation Theatres are full of latest technologies and equipments.</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="content-boxes-v5" style="margin-bottom: 30px;">
<i style="border-radius: 50%;" class="icon-medical-069"></i>
<div class="overflow-h">
<h3 class="no-top-space">Joint Replacement Centre</h3>
<p>We have have dedicated Joint Replacement Centre.</p>
</div>
</div>
<div class="content-boxes-v5" style="margin-bottom: 30px;">
<i style="border-radius: 50%;" class="icon-medical-061"></i>
<div class="overflow-h">
<h3 class="no-top-space">2 Endoscopy Suites</h3>
<p>2 Endoscopy Suites are with latest equipments and very faster as compared to others.</p>
</div>
</div>
</div>
</div><!--/end row-->
</div><!--/end container-->
<!-- End Content Part -->
<!--
- #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 Listing</p>
<h2 class="headline-md" data-reveal="left">Browse by specialist</h2>
</li>
<li>
<div class="listing-card" data-reveal="bottom">
<div class="card-icon">
<img src="./assets/img/logo/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">Dr. Rajshri</p>
</div>
</div>
</li>
<li>
<div class="listing-card" data-reveal="bottom">
<div class="card-icon">
<img src="./assets/img/logo/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">Dr. Bijeta Singh</p>
</div>
</div>
</li>
<li>
<div class="listing-card" data-reveal="bottom">
<div class="card-icon">
<img src="./assets/img/logo/icon-3.png" width="71" height="71" loading="lazy" alt="icon">
</div>
<div>
<h3 class="headline-sm card-title">Pulmonology</h3>
<p class="card-text">Dr. Nitish Kumar</p>
</div>
</div>
</li>
<li>
<div class="listing-card" data-reveal="bottom">
<div class="card-icon">
<img src="./assets/img/logo/icon-4.png" width="71" height="71" loading="lazy" alt="icon">
</div>
<div>
<h3 class="headline-sm card-title">Orthopedics</h3>
<p class="card-text">Dr. Rajnish Kumar</p>
</div>
</div>
</li>
<li>
<div class="listing-card" data-reveal="bottom">
<div class="card-icon">
<img src="./assets/img/logo/icon-5.png" width="71" height="71" loading="lazy" alt="icon">
</div>
<div>
<h3 class="headline-sm card-title">Pediatrics</h3>
<p class="card-text">Dr. Amit Mohan</p>
</div>
</div>
</li>
<li>
<div class="listing-card" data-reveal="bottom">
<div class="card-icon">
<img src="./assets/img/logo/icon-6.png" width="71" height="71" loading="lazy" alt="icon">
</div>
<div>
<h3 class="headline-sm card-title">Osteology</h3>
<p class="card-text">Dr. Sanjay Choudhary</p>
</div>
</div>
</li>
</ul>
</div>
</section>
<!-- Plans Start -->
<section class="pricingSection">
<div class="container" style="margin-top: 20px;">
<div class="headline-center">
<h2>Health Packages</h2>
<div class="line"></div>
<div class="row">
<!-- Pricing Item -->
<div class="col-md-3 col-xs-6 col-2xs-12">
<div style="border-radius: 10px;" class="pricing-v9 hover-effect">
<div class="pricing-v9-head">
<h3 class="h3"><span class="g-color-default">UNITY</span> Basic wellness</h3>
</div>
<ul style="list-style-type:none;">
<li>CBC</li>
<li>Blood Group & RH</li>
<li>Urine (Routine & Micro)</li>
<li> </li>
<li> </li>
</ul>
<div class="pricing-v9-price">
For <span class="g-color-default">₹1500/-</span>
</div>
</div>
</div>
<!-- /Pricing Item -->
<!-- Pricing Item -->
<div class="col-md-3 col-xs-6 col-2xs-12">
<div style="border-radius: 10px;" class="pricing-v9 hover-effect">
<div class="pricing-v9-head">
<h3 class="h3"><span class="g-color-default">UNITY</span> Gold Wellness</h3>
</div>
<ul style="list-style-type:none;">
<li>CBC</li>
<li>Blood Group & RH </li>
<li>Urine (Routine & Micro)</li>
<li>SGPT</li>
<li> </li>
</ul>
<div class="pricing-v9-price">
For <span class="g-color-default">₹3000/-</span>
</div>
</div>
</div>
<!-- /Pricing Item -->
<!-- Pricing Item -->
<div class="col-md-3 col-xs-6 col-2xs-12">
<div style="border-radius: 10px;" class="pricing-v9 hover-effect">
<div class="pricing-v9-head">
<h3 class="h3"><span class="g-color-default">UNITY</span> Happy Heart</h3>
</div>
<ul style="list-style-type:none;">
<li>Lipid Profile </li>
<li>ECG</li>
<li>Chest X-RAY</li>
<li>FBS</li>
<li>Basic Wellness Included</li>
<li> </li>
</ul>
<div class="pricing-v9-price">
For <span class="g-color-default">₹4500/-</span>
</div>
</div>
</div>
<!-- /Pricing Item -->
<!-- Pricing Item -->
<div class="col-md-3 col-xs-6 col-2xs-12">
<div style="border-radius: 10px;" class="pricing-v9 hover-effect">
<div class="pricing-v9-head">
<h3 class="h3"><span class="g-color-default">UNITY</span> Platinum Wellness</h3>
</div>
<ul style="list-style-type:none;">
<li>Basic Wellness Plan</li>
<li>Lung Function Tests</li>
<li>USG Abdomen</li>
<li>Thyroid All Tests</li>
<li>Lung Efficiency Tests</li>
</ul>
<div class="pricing-v9-price">
For <span class="g-color-default">₹8000/-</span>
</div>
</div>
</div>
<!-- /Pricing Item -->
</div>
</div>
</div>
</section>
<!-- End PLANS -->
<!-- Blog part -->
<div class="container">
<div class="headline-center" style="margin-bottom: 40px;">
<h2>Recent Blogs</h2>
<div class="line"></div>
</div><!--/end Headline Center-->
<div class="container" style="margin-bottom: 50px;">
<div class="row news-v1">
<div class="col-md-4" style="margin-bottom: 40px;">
<div class="news-v1-in">
<img class="img-responsive" src="assets/img/blogs/1.jpg" alt="">
<h3><a href="blog.html">How to maintain bone and joint health during winters?</a></h3>
<p>Motion is life and you need stronger bones and flexible joints to do that. With the onset of winter, the problems of bones and joints ought to increase. It is usually due to... </p>
<ul class="list-inline news-v1-info">
<li><span>By</span> <a href="#">Dr. Ramneek Mahajan</a></li>
<li style="margin-left: 17px;">|</li>
<li style="margin-left: 12px;"><i class="fa fa-clock-o"></i> December 31, 2020</li>
<li><a href="blog.html" class="btn-u btn-brd btn-brd-hover blogButton">Read More</a></li>
</ul>
</div>
</div>
<div class="col-md-4" style="margin-bottom: 40px;">
<div class="news-v1-in">
<img class="img-responsive" src="assets/img/blogs/2.jpg" alt="">
<h3><a href="blog.html">Robot Assisted Kidney Transplant in France</a></h3>
<p>Open kidney transplant is an established procedure, considered the best treatment for end stage renal failure. However, it carries all the disadvantages of open surgeries. Wound...</p>
<ul class="list-inline news-v1-info">
<li><span>By</span> <a href="#">Dr. Anant Kumar</a></li>
<li style="margin-left: 17px;">|</li>
<li style="margin-left: 12px;"><i class="fa fa-clock-o"></i> December 31, 2020</li>
<li><a href="blog.html" class="btn-u btn-brd btn-brd-hover blogButton">Read More</a></li>
</ul>
</div>
</div>
<div class="col-md-4">
<div class="news-v1-in">
<img class="img-responsive" src="assets/img/blogs/3.jpg" alt="">
<h3><a href="blog.html">Body Weight - What you must know about it!</a></h3>
<p>Our weight is one of the physical characteristics which describes us. However apart from being a physical attribute, it holds the secret to our very existence..</p>
<ul class="list-inline news-v1-info">
<li><span>By</span> <a href="#">Dr. Vandana Soni</a></li>
<li style="margin-left: 17px;">|</li>
<li style="margin-left: 12px;"><i class="fa fa-clock-o"></i> December 31, 2020</li>
<li><a href="blog.html" class="btn-u btn-brd btn-brd-hover blogButton">Read More</a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- End News v1 Gray -->
</div>
<!--=== Footer ===-->
<div class="footer-v1">
<div class="footer">
<div class="container">
<div class="row">
<!-- About -->
<div class="col-md-3 md-margin-bottom-40">
<a href="index.html"><img id="logo-footer" class="footer-logo" src="assets/img/logo/unity_white.jpg" alt=""></a>
<p>At Unity Hospital, we are convinced that 'quality' and 'lowest cost' are not mutually exclusive when it comes to healthcare delivery.</p>
<p>Our mission is to deliver high quality, affordable healthcare services to the broader population in India.</p>
</div><!--/col-md-3-->
<!-- End About -->
<!-- Latest -->
<div class="col-md-3" style="margin-bottom: 40px;">
<div class="posts">
<div class="headline"><h2>Latest Posts</h2></div>
<ul class="list-unstyled latest-list">
<li>
<a href="blog.html">Incredible content</a>
<small>December 16, 2020</small>
</li>
<li>
<a href="gallery.html">Latest Images</a>
<small>December 16, 2020</small>
</li>
<li>
<a href="terms.html">Terms and Conditions</a>
<small>December 16, 2020</small>
</li>
</ul>
</div>
</div><!--/col-md-3-->
<!-- End Latest -->
<!-- Link List -->
<div class="col-md-3" style="margin-bottom: 40px;">
<div class="headline"><h2>Useful Links</h2></div>
<ul class="list-unstyled link-list">
<li><a href="about.html">About us</a><i class="fa fa-angle-right"></i></li>
<li><a href="Contact.html">Contact us</a><i class="fa fa-angle-right"></i></li>
<li><a href="appointment.html">Book Appointment</a><i class="fa fa-angle-right"></i></li>
</ul>
</div><!--/col-md-3-->
<!-- End Link List -->
<!-- Address -->
<div class="col-md-3 map-img" style="margin-bottom: 40px;">
<div class="headline"><h2>Contact Us</h2></div>
<address class="md-margin-bottom-40">
Unity Hospital <br />
Ahmedabad, IN <br />
Phone: 886 666 00555 <br />
Email: unityhospital@gmail.com
</address>
</div><!--/col-md-3-->
<!-- End Address -->
</div>
</div>
</div><!--/footer-->
<div class="copyright">
<div class="container">
<div class="row">
<div class="col-md-6">
<p>
2020 © All Rights Reserved.
<a href="privacy.html">Privacy Policy</a> | <a href="terms.html">Terms of Service</a>
</p>
</div>
<!-- Social Links -->
<div class="col-md-6">
<ul class="footer-socials list-inline">
<li>
<a href="http://www.facebook.com" class="tooltips" data-toggle="tooltip" data-placement="top" title="" data-original-title="Facebook">
<i class="fa fa-facebook"></i>
</a>
</li>
<li>
<a href="http://www.skype.com" class="tooltips" data-toggle="tooltip" data-placement="top" title="" data-original-title="Skype">
<i class="fa fa-skype"></i>
</a>
</li>
<li>
<a href="http://www.googleplus.com" class="tooltips" data-toggle="tooltip" data-placement="top" title="" data-original-title="Google Plus">
<i class="fa fa-google-plus"></i>
</a>
</li>
<li>
<a href="http://www.linkedin.com" class="tooltips" data-toggle="tooltip" data-placement="top" title="" data-original-title="Linkedin">
<i class="fa fa-linkedin"></i>
</a>
</li>
<li>
<a href="http://www.Pinterest.com" class="tooltips" data-toggle="tooltip" data-placement="top" title="" data-original-title="Pinterest">
<i class="fa fa-pinterest"></i>
</a>
</li>
<li>
<a href="http://www.twitter.com" class="tooltips" data-toggle="tooltip" data-placement="top" title="" data-original-title="Twitter">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
</div>
<!-- End Social Links -->
</div>
</div>
</div><!--/copyright-->
</div>
<!--=== End Footer ===-->
</div><!--/wrapper-->
<script type="text/javascript">
'use strict';
/**
* add event listener on multiple elements
*/
const addEventOnElements = function (elements, eventType, callback) {
for (let i = 0, len = elements.length; i < len; i++) {
elements[i].addEventListener(eventType, callback);
}
}
/**
* PRELOADER
*
* preloader will be visible until document load
*/
const preloader = document.querySelector("[data-preloader]");
window.addEventListener("load", function () {
preloader.classList.add("loaded");
document.body.classList.add("loaded");
});
/**
* MOBILE NAVBAR
*
* show the mobile navbar when click menu button
* and hidden after click menu close button or overlay
*/
const navbar = document.querySelector("[data-navbar]");
const navTogglers = document.querySelectorAll("[data-nav-toggler]");
const overlay = document.querySelector("[data-overlay]");
const toggleNav = function () {
navbar.classList.toggle("active");
overlay.classList.toggle("active");
document.body.classList.toggle("nav-active");
}
addEventOnElements(navTogglers, "click", toggleNav);
/**
* HEADER & BACK TOP BTN
*
* active header & back top btn when window scroll down to 100px
*/
const header = document.querySelector("[data-header]");
const backTopBtn = document.querySelector("[data-back-top-btn]");
const activeElementOnScroll = function () {
if (window.scrollY > 100) {
header.classList.add("active");
backTopBtn.classList.add("active");
} else {
header.classList.remove("active");
backTopBtn.classList.remove("active");
}
}
window.addEventListener("scroll", activeElementOnScroll);
/**
* SCROLL REVEAL
*/
const revealElements = document.querySelectorAll("[data-reveal]");
const revealElementOnScroll = function () {
for (let i = 0, len = revealElements.length; i < len; i++) {
if (revealElements[i].getBoundingClientRect().top < window.innerHeight / 1.15) {
revealElements[i].classList.add("revealed");
} else {
revealElements[i].classList.remove("revealed");
}
}
}
window.addEventListener("scroll", revealElementOnScroll);
window.addEventListener("load", revealElementOnScroll);
</script>
</body>
</html>