-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
662 lines (578 loc) · 24.4 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
<!DOCTYPE html>
<html lang="zxx">
<head>
<meta charset="utf-8">
<title>AR Shapes for Kids</title>
<!-- mobile responsive meta -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- ** Plugins Needed for the Project ** -->
<!-- Bootstrap -->
<link rel="stylesheet" href="plugins/bootstrap/bootstrap.min.css">
<!-- themefy-icon -->
<link rel="stylesheet" href="plugins/themify-icons/themify-icons.css">
<!-- slick slider -->
<link rel="stylesheet" href="plugins/slick/slick.css">
<!-- venobox popup -->
<link rel="stylesheet" href="plugins/Venobox/venobox.css">
<!-- aos -->
<link rel="stylesheet" href="plugins/aos/aos.css">
<!-- Main Stylesheet -->
<link href="css/style.css" rel="stylesheet">
<!--Favicon-->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<style>
#myBtn {
display: none;
position: fixed;
bottom: 20px;
right: 30px;
z-index: 99;
border: none;
outline: none;
background-color: red;
color: white;
cursor: pointer;
padding: 15px;
border-radius: 4px;
}
#myBtn:hover {
background-color: #555;
}
</style>
</head>
<body>
<!-- navigation -->
<section class="fixed-top navigation">
<div class="container ">
<nav class="navbar navbar-expand-lg navbar-light">
<a class="navbar-brand " href="index.html"><img src="images/logo1.png" alt="logo"> AR Shape for Kids</a>
<button class="navbar-toggler border-0" type="button" data-toggle="collapse" data-target="#navbar" aria-controls="navbar"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- navbar -->
<div class="collapse navbar-collapse text-center" id="navbar">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#feature">Project</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#team">Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="arshapes.html">AR Shapes</a>
</li>
<li class="nav-item">
<a class="nav-link" href="quiz.html">Quiz</a>
</li>
<li class="nav-item">
<a class="nav-link" href="explore.html">Explore</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
<!-- /navigation <a href="#" class="btn btn-primary ml-lg-3 primary-shadow">Try Free</a> -->
</div>
</nav>
</div>
</section>
<!-- /navigation -->
<!-- hero area -->
<section class="hero-section hero" data-background="" style="background-image: url(images/hero-area/banner-bg.png);">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center zindex-1">
<div class="sk-folding-cube">
<div class="sk-cube1 sk-cube"></div>
<div class="sk-cube2 sk-cube"></div>
<div class="sk-cube4 sk-cube"></div>
<div class="sk-cube3 sk-cube"></div>
</div>
<h1 class="mb-3">Take Control of your
Shapes </h1>
<p class="mb-4">Experience learning like you've never seen before.</p>
<p class="mb-4" > For development viewing check this link.</p>
<a href="https://xu-clone-augwebapp.netlify.app/" class="btn btn-secondary btn-lg">For our dev site just visit here </a>
<!-- banner image -->
<img class="img-fluid w-100 banner-image" src="images/hero-area/kids2.png" alt="banner-img">
</div>
</div>
</div>
<!-- background shapes -->
<div id="scene">
<img class="img-fluid hero-bg-1 up-down-animation" src="images/background-shape/feature-bg-2.png" alt="">
<img class="img-fluid hero-bg-2 left-right-animation" src="images/background-shape/seo-ball-1.png" alt="">
<img class="img-fluid hero-bg-3 left-right-animation" src="images/background-shape/seo-half-cycle.png" alt="">
<img class="img-fluid hero-bg-4 up-down-animation" src="images/background-shape/green-dot.png" alt="">
<img class="img-fluid hero-bg-5 left-right-animation" src="images/background-shape/blue-half-cycle.png" alt="">
<img class="img-fluid hero-bg-6 up-down-animation" src="images/background-shape/seo-ball-1.png" alt="">
<img class="img-fluid hero-bg-7 left-right-animation" src="images/background-shape/yellow-triangle.png" alt="">
<img class="img-fluid hero-bg-8 up-down-animation" src="images/background-shape/service-half-cycle.png" alt="">
<img class="img-fluid hero-bg-9 up-down-animation" src="images/background-shape/team-bg-triangle.png" alt="">
</div>
</section>
<!-- /hero-area -->
<br>
<br>
<br>
<!-- feature -->
<section class="section feature mb-0" id="feature">
<div class="container">
<div class="row">
<
<div class="col-lg-12 text-center">
<h2 class="section-title">Our Project</h2>
<p class="mb-100">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<br>Excepteur sint occaecat cupidatat non proident</p>
</div>
<!-- feature item -->
<div class="col-md-6 mb-80">
<div class="d-flex feature-item">
<div>
<i class="ti-ruler-pencil feature-icon mr-4"></i>
</div>
<div>
<h4>Awesome Design</h4>
<p>Consectetur adipiscing elit donec tempus
pellentesque dui.</p>
</div>
</div>
</div>
<!-- feature item -->
<div class="col-md-6 mb-80">
<div class="d-flex feature-item">
<div>
<i class="ti-layout-cta-left feature-icon mr-4"></i>
</div>
<div>
<h4>Easy Customize</h4>
<p>Consectetur adipiscing elit donec tempus
pellentesque dui.</p>
</div>
</div>
</div>
<!-- feature item -->
<div class="col-md-6 mb-80">
<div class="d-flex feature-item">
<div>
<i class="ti-split-v-alt feature-icon mr-4"></i>
</div>
<div>
<h4>Bug free Code</h4>
<p>Consectetur adipiscing elit donec tempus
pellentesque dui.</p>
</div>
</div>
</div>
<!-- feature item -->
<div class="col-md-6 mb-80">
<div class="d-flex feature-item">
<div>
<i class="ti-layers-alt feature-icon mr-4"></i>
</div>
<div>
<h4>Organized Layouts</h4>
<p>Consectetur adipiscing elit donec tempus
pellentesque dui.</p>
</div>
</div>
</div>
</div>
</div>
<img class="feature-bg-1 up-down-animation" src="images/background-shape/feature-bg-1.png" alt="bg-shape">
<img class="feature-bg-2 left-right-animation" src="images/background-shape/feature-bg-2.png" alt="bg-shape">
</section>
<!-- /feature -->
<!-- about us -->
<section class="section-lg about pb-0">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-title">3D Shapes Video!</h2>
</div>
<div class="col-lg-12 mb-100">
<p>Readdle redefines personal productivity and shapes the "future of work" by crea
outstanding apps and services. Popular Readdle apps such as Scanner Pro, PDF
Expert, Spark and Documents, were downloaded over 90 million times worldwide.</p>
<p>Readdle apps shaped mobile software categories, such as document scanning
(Scanner Pro), email (Spark), document management (Documents), PDF editing
(PDF Expert) and calendaring (Calendars 5). We've also won numerous awards,
got to the top positions on the App Store charts and, most importantly, are loved
by millions of people.</p>
</div>
<div class="col-lg-12">
<!-- about video -->
<div class="about-video">
<img class="img-fluid w-100" src="images/thumbnailshapes.jpg" alt="video-thumb">
<a class="venobox play-btn" href="https://www.youtube.com/embed/tbZ6cWBlPqo" allow='autoplay' data-vbtype="iframe"><i class="ti-control-play"></i></a>
</div>
</div>
</div>
</div>
<!-- background shapes -->
<img src="images/background-shape/green-dot.png" alt="background-shape" class="about-bg-1 up-down-animation">
<img src="images/background-shape/blue-dot.png" alt="background-shape" class="about-bg-2 left-right-animation">
<img src="images/background-shape/green-half-cycle.png" alt="background-shape" class="about-bg-3 up-down-animation">
<img src="images/background-shape/seo-ball-1.png" alt="background-shape" class="about-bg-4 left-right-animation">
<img src="images/background-shape/team-bg-triangle.png" alt="background-shape" class="about-bg-5 up-down-animation">
<img src="images/background-shape/service-half-cycle.png" alt="background-shape" class="about-bg-6 left-right-animation">
</section>
<!-- /about us -->
<!-- modal pciture -->
<section class="section feature mb-0" id="modal">
<div class="container contact-bg p-5 rounded mb-5">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-title">Extras</h2>
<p class="mb-100">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<br>Excepteur sint occaecat cupidatat non proident</p>
<div class="col-lg-12">
<!-- about video -->
</div>
</div>
<!-- feature item -->
<div class="col-md-6 mb-80">
<div class="d-flex feature-item">
<div>
<div class="about-video">
<img class="img-fluid w-40" src="images/extras/voxel.gif" alt="video-thumb" style="width:100%;max-width:500px" >
<a class="venobox play-btn" href="three.js-dev/examples/webgl_interactive_voxelpainter.html" data-vbtype="iframe"><i class="ti-control-play"></i></a>
</div>
<br>
<h4>Voxel Painter</h4>
<p>Consectetur adipiscing elit donec tempus
pellentesque dui.</p>
</div>
</div>
</div>
<!-- feature item -->
<div class="col-md-6 mb-80">
<div class="d-flex feature-item">
<div>
<div class="about-video">
<img class="img-fluid w-40" src="images/extras/skinning morp.gif" alt="video-thumb" style="width:100%;max-width:500px" >
<a class="venobox play-btn" href="three.js-dev/examples/webgl_animation_skinning_morph.html" data-vbtype="iframe"><i class="ti-control-play"></i></a>
</div>
<br>
<h4>Skinning Morp</h4>
<p>Consectetur adipiscing elit donec tempus
pellentesque dui.</p>
</div>
</div>
</div>
<div class="col-12 text-center">
<a href="explore.html" class="btn btn-primary">Explore more extra fun </a>
</div>
</div>
</div>
<img class="feature-bg-1 up-down-animation" src="images/background-shape/feature-bg-1.png" alt="bg-shape">
<img class="feature-bg-2 left-right-animation" src="images/background-shape/feature-bg-2.png" alt="bg-shape">
</section>
<!-- /modal picture -->
<!--
<section class="section-lg seo">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="seo-image">
<img class="img-fluid" src="images/marketing/marketing.png" alt="form-img">
</div>
</div>
<div class="col-md-5">
<h2 class="section-title">A Complete Range Of SEO Marketing Services!</h2>
<p>Far far away, behind the word mountains, far
from the countries Vokalia and Consonantia.<br>
There live the blind texts. Separated they
live in Bookmarksgrove right at the coast of
the Semantics, a large language ocean.
</p>
</div>
</div>
</div> -->
<!-- background image -->
<img class="img-fluid seo-bg" src="images/backgrounds/seo-bg.png" alt="seo-bg">
<!-- background-shape -->
<img class="seo-bg-shape-1 left-right-animation" src="images/background-shape/seo-ball-1.png" alt="bg-shape">
<img class="seo-bg-shape-2 up-down-animation" src="images/background-shape/seo-half-cycle.png" alt="bg-shape">
<img class="seo-bg-shape-3 left-right-animation" src="images/background-shape/seo-ball-2.png" alt="bg-shape">
</section>
<!-- /marketing -->
<!-- /marketing -->
<!-- service
<section class="section-lg service">
<div class="container">
<div class="row justify-content-between">
<div class="col-md-5 order-2 order-md-1">
<h2 class="section-title">Powerful Layout From Top To Bottom</h2>
<p class="mb-4">Far far away, behind the word mountains,
far from the countries Vokalia and Consonantia,
there live the blind texts. Separated they
live in Bookmarksgrove right at the coast of the
Semantics, a large language ocean.</p>
<ul class="pl-0 service-list">
<li><i class="ti-layout-tab-window text-purple"></i>Responsive on any device</li>
<li><i class="ti-layout-placeholder text-purple"></i>Very easy to customize</li>
<li><i class="ti-support text-purple"></i>Effective support</li>
</ul>
</div>
<div class="col-md-7 order-1 order-md-2">
<img class="img-fluid layer-3" src="images/service/service.png" alt="service">
</div>
</div>
</div>
-->
<!-- background image
<img class="img-fluid service-bg" src="images/backgrounds/service-bg.png" alt="service-bg">
background shapes
<img class="service-bg-shape-1 up-down-animation" src="images/background-shape/service-half-cycle.png" alt="background-shape">
<img class="service-bg-shape-2 left-right-animation" src="images/background-shape/feature-bg-2.png" alt="background-shape">
</section>
service -->
<!-- team -->
<section class="section-lg team" id="team">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-title">Our Team</h2>
<p class="mb-100">We are Xavier Ateneo Students, developing an Augmented Reailty Shapes Web to study Spatial Learning and Depth of Perception </p>
</div>
</div>
<div class="col-10 mx-auto">
<div class="team-slider">
<!-- team-member -->
<div class="team-member">
<div class="d-flex mb-4">
<div class="mr-3">
<img class="rounded-circle img-fluid" src="xu assets/XUprofilepics/angelo.jpg" alt="team-member">
</div>
<div class="align-self-center">
<h4>Angelo</h4>
<h6 class="text-color">web designer/programmer</h6>
</div>
</div>
<p>I am enthusiastic that this development will lead to better and more ideal practices for Augmented Reality Development for those with Non-verbal Learning Disorder</p>
</div>
<!-- team-member -->
<div class="team-member">
<div class="d-flex mb-4">
<div class="mr-3">
<img class="rounded-circle img-fluid" src="xu assets/XUprofilepics/luigi.jpg" alt="team-member">
</div>
<div class="align-self-center">
<h4>Luigi Tejada</h4>
<h6 class="text-color">web developer/programer</h6>
</div>
</div>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. S eparated they</p>
</div>
<!-- team-member -->
<div class="team-member">
<div class="d-flex mb-4">
<div class="mr-3">
<img class="rounded-circle img-fluid" src="xu assets/XUprofilepics/gerald.jpg" alt="team-member">
</div>
<div class="align-self-center">
<h4>Gerald Navarro</h4>
<h6 class="text-color">web developer/programmer</h6>
</div>
</div>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live
the blind texts. S eparated they</p>
</div>
<!-- team-member -->
<div class="team-member">
<div class="d-flex mb-4">
<div class="mr-3">
<img class="rounded-circle img-fluid" src="xu assets/XUprofilepics/sponser.jpg" alt="team-member">
</div>
<div class="align-self-center">
<h4>Thanks to our Sponsors!</h4>
</div>
</div>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live
the blind texts. S eparated they</p>
</div>
<!-- team-member -->
<div class="team-member">
<div class="d-flex mb-4">
<div class="mr-3">
<img class="rounded-circle img-fluid" src="images/team/team-2.jpg" alt="team-member">
</div>
<div class="align-self-center">
<h4>Thanks to our Advisors!</h4>
</div>
</div>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. S eparated they</p>
</div>
</div>
</div>
</div>
<!-- backgound image -->
<img src="images/backgrounds/team-bg.png" alt="team-bg" class="img-fluid team-bg">
<!-- background shapes -->
<img class="team-bg-shape-1 up-down-animation" src="images/background-shape/seo-ball-1.png" alt="background-shape">
<img class="team-bg-shape-2 left-right-animation" src="images/background-shape/seo-ball-1.png" alt="background-shape">
<img class="team-bg-shape-3 left-right-animation" src="images/background-shape/team-bg-triangle.png" alt="background-shape">
<img class="team-bg-shape-4 up-down-animation img-fluid" src="images/background-shape/team-bg-dots.png" alt="background-shape">
</section>
<!-- /team -->
<!-- pricing
<section class="section-lg pb-0 pricing" id="pricing">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-title">Our Pricing</h2>
<p class="mb-50">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu <br>
fugiat nulla pariatur. Excepteur sint occaecat </p>
</div>
<div class="col-lg-10 mx-auto">
<div class="row justify-content-center">
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0">
<div class="rounded text-center pricing-table table-1">
<h3>Free</h3>
<h1><span>$</span>00</h1>
<p>Far far away, behind the
wordmountains, far from the
countries Vokalia and
</p>
<a href="#" class="btn pricing-btn px-2">Get Started</a>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0">
<div class="rounded text-center pricing-table table-2">
<h3>Standard</h3>
<h1><span>$</span>75</h1>
<p>Far far away, behind the
wordmountains, far from the
countries Vokalia and
</p>
<a href="#" class="btn pricing-btn px-2">Buy Now</a>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0">
<div class="rounded text-center pricing-table table-3">
<h3>Premium</h3>
<h1><span>$</span>99</h1>
<p>Far far away, behind the
wordmountains, far from the
countries Vokalia and
</p>
<a href="#" class="btn pricing-btn px-2">Buy Now</a>
</div>
</div>
</div>
</div>
</div>
</div>
<img class="pricing-bg-shape-1 up-down-animation" src="images/background-shape/seo-ball-1.png" alt="background-shape">
<img class="pricing-bg-shape-2 up-down-animation" src="images/background-shape/seo-half-cycle.png" alt="background-shape">
<img class="pricing-bg-shape-3 left-right-animation" src="images/background-shape/team-bg-triangle.png" alt="background-shape">
</section>
pricing -->
<!-- newsletter
<section class="newsletter">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Subscribe to our newsletter</h2>
<p class="mb-5">Receive updates, news and deals</p>
</div>
<div class="col-lg-8 col-sm-10 col-12 mx-auto">
<form action="#">
<div class="input-wrapper position-relative">
<input type="email" class="newsletter-form" id="newsletter" placeholder="Enter your email">
<button type="submit" value="send" class="btn newsletter-btn">subscribe</button>
</div>
</form>
</div>
</div>
</div>
background shapes -->
<img class="newsletter-bg-shape left-right-animation" src="images/background-shape/seo-ball-2.png" alt="background-shape">
</section>
<!-- /newsletter -->
<!-- footer -->
<footer class="footer-section footer" style="background-image: url(images/backgrounds/footer-bg.png);">
<div class="container">
<div class="row">
<div class="col-lg-4 text-center text-lg-left mb-4 mb-lg-0">
<!-- logo -->
<a href="index.html">
<img class="img-fluid" src="images/logo1.png" alt="logo">
</a>
</div>
<!-- footer menu -->
<nav class="col-lg-8 align-self-center mb-5">
<ul class="list-inline text-lg-right text-center footer-menu">
<li class="list-inline-item active"><a href="index.html">Home</a></li>
<li class="list-inline-item"><a class="nav-link page-scroll" href="#feature">Project</a></li>
<li class="list-inline-item"><a class="nav-link page-scroll" href="#team">Team</a></li>
<li class="list-inline-item"><a class="nav-link" href="arshapes.html">AR Shapes</a></li>
<li class="list-inline-item"><a class="nav-link" href="quiz.html">Quiz</a></li>
<li class="list-inline-item"><a class="nav-link" href="explore.html">Explore</a></li>
<li class="list-inline-item"><a href="contact.html">Contact</a></li>
</ul>
</nav>
</ul>
<!-- /navigation <a href="#" class="btn btn-primary ml-lg-3 primary-shadow">Try Free</a> -->
</div>
<!-- footer social icon -->
<nav class="col-12">
<ul class="list-inline text-lg-right text-center social-icon">
<li class="list-inline-item">
<a class="facebook" href="#"><i class="ti-facebook"></i></a>
</li>
<li class="list-inline-item">
<a class="twitter" href="#"><i class="ti-twitter-alt"></i></a>
</li>
<li class="list-inline-item">
<a class="linkedin" href="#"><i class="ti-linkedin"></i></a>
</li>
<li class="list-inline-item">
<a class="black" href="#"><i class="ti-github"></i></a>
</li>
</ul>
</nav>
</div>
</div>
</footer>
<!-- /footer -->
<!-- jQuery -->
<script src="plugins/jQuery/jquery.min.js"></script>
<!-- Bootstrap JS -->
<script src="plugins/bootstrap/bootstrap.min.js"></script>
<!-- slick slider -->
<script src="plugins/slick/slick.min.js"></script>
<!-- venobox -->
<script src="plugins/Venobox/venobox.min.js"></script>
<!-- aos -->
<script src="plugins/aos/aos.js"></script>
<!-- Main Script -->
<script src="js/script.js"></script>
<!-- button to top -->
<button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
<script>
//Get the button
var mybutton = document.getElementById("myBtn");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
<!-- button to top end-->
</body>
</html>