-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
704 lines (573 loc) · 26.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>KeeChu</title>
<!-- MDB icon -->
<link rel="icon" href="img/mdb-favicon.ico" type="image/x-icon">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css">
<!-- Google Fonts Roboto -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap">
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Material Design Bootstrap -->
<link rel="stylesheet" href="css/mdb.min.css">
<!-- Your custom styles (optional) -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Start your project here-->
<!--Navbar-->
<nav class="navbar navbar-expand-lg navbar-light white fixed-top">
<div class="container">
<a class="navbar-brand" href="#">
<h2>KeeChu</h2>
</a>
<!-- Collapse button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#basicExampleNav" aria-controls="basicExampleNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Links -->
<div class="collapse navbar-collapse" id="basicExampleNav">
<!-- Left -->
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link waves-effect" href="#" target="_blank">Home</a>
</li>
<li class="nav-item">
<a class="nav-link waves-effect" href="#about-us" target="_blank">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link waves-effect" href="#services" target="_blank">Services</a>
</li>
<li class="nav-item">
<a class="nav-link waves-effect" href="#products" target="_blank">Products</a>
</li>
<li class="nav-item">
<a class="nav-link waves-effect" href="#faq/" target="_blank">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link waves-effect" href="#contact" target="_blank">Contact</a>
</li>
</ul>
<!-- Right -->
<ul class="navbar-nav nav-flex-icons">
<li class="nav-item">
<a href="#" class="nav-link waves-effect" target="_blank">
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link waves-effect" target="_blank">
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link waves-effect" target="_blank">
<i class="fa fa-envelope"></i>
</a>
</li>
<li class="nav-item">
<a href="https://mdbootstrap.com/docs/jquery/newsletter/" class="nav-link border border-light rounded waves-effect mr-2 default-color white-text" target="_blank">
Create your account
</a>
</li>
</ul>
</div>
</div>
</nav>
<!--/.Navbar-->
<main>
<div class="container z-depth-1 mt-5 pb-3">
<div class="container my-5 pt-5 pb-3 px-5" id="progress">
<!-- Section 3 steps -->
<section>
<style>
.fa-play:before {
margin-left: .3rem;
}
/* Steps */
.step {
list-style: none;
margin: 0;
}
.step-element {
display: flex;
padding: 1rem 0;
}
.step-number {
position: relative;
width: 7rem;
flex-shrink: 0;
text-align: center;
}
.step-number .number {
color: #bfc5ca;
background-color: #eaeff4;
font-size: 1.5rem;
}
.step-number .number {
width: 48px;
height: 48px;
line-height: 48px;
}
.number {
display: inline-flex;
justify-content: center;
align-items: center;
width: 38px;
border-radius: 10rem;
}
.step-number::before {
content: '';
position: absolute;
left: 50%;
top: 48px;
bottom: -2rem;
margin-left: -1px;
border-left: 2px dashed #eaeff4;
}
.step .step-element:last-child .step-number::before {
bottom: 1rem;
}
</style>
<!-- Modal -->
<div class="modal fade" id="modal1" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="embed-responsive embed-responsive-16by9 z-depth-1-half">
<iframe id="player" class="embed-responsive-item" src="https://www.youtube.com/embed/7MUISDJ5ZZ4" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
<h3 class="font-weight-bold text-center dark-grey-text pb-2">Three Easy Steps</h3>
<hr class="w-header my-4">
<p class="lead text-center text-muted pt-2 mb-5">Explore the best MDB template in the market in a short 1-minute video.</p>
<div class="row align-items-center">
<div class="col-lg-6 mb-4">
<div class="view z-depth-1-half rounded">
<img class="rounded img-fluid" src="https://mdbootstrap.com/img/Photos/Horizontal/Work/12-col/img%20(6).jpg" alt="Video title">
<div class="mask flex-center rgba-black-light">
<a id="play" class="btn-floating btn-primary btn-lg" data-toggle="modal" data-target="#modal1"><i class="fas fa-play"></i></a>
</div>
</div>
</div>
<div class="col-lg-6 mb-4">
<ol class="step pl-0">
<li class="step-element pb-0">
<div class="step-number">
<span class="number">1</span>
</div>
<div class="step-excerpt">
<h6 class="font-weight-bold dark-grey-text mb-3">Write your requirements</h6>
<p class="text-muted">Think the or organization same proposal to affected heard reclined in be it reassuring.</p>
</div>
</li>
<li class="step-element pb-0">
<div class="step-number">
<span class="number">2</span>
</div>
<div class="step-excerpt">
<h6 class="font-weight-bold dark-grey-text mb-3">Sign the contract</h6>
<p class="text-muted">Think the or organization same proposal to affected heard reclined in be it reassuring.</p>
</div>
</li>
<li class="step-element pb-0">
<div class="step-number">
<span class="number">3</span>
</div>
<div class="step-excerpt">
<h6 class="font-weight-bold dark-grey-text mb-3">We start developing</h6>
<p class="text-muted">Think the or organization same proposal to affected heard reclined in be it reassuring.</p>
</div>
</li>
</ol>
</div>
</div>
</section>
<!-- Section -->
</div>
<div class="container px-5 pt-5 pb-4" id="about-us">
<!--Section: About Us-->
<section class="dark-grey-text">
<style>
.d-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-auto-rows: 100px;
grid-gap: 7px;
}
.item {
position: relative;
}
.item:nth-child(1) {
grid-column: 1 / 2;
grid-row: 1 / 4;
}
.item:nth-child(2) {
grid-column: 2;
grid-row: 0 / 3;
}
.item:nth-child(3) {
grid-column: 2;
grid-row: 2 / 3;
}
.item:nth-child(4) {
grid-column: 2;
grid-row: 3 / 3;
}
.item a {
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
overflow: hidden;
}
.item img {
height: 100%;
width: 100%;
object-fit: cover;
}
</style>
<div class="row align-items-center">
<div class="col-lg-6 mb-4">
<h2 class="font-weight-normal mb-4">About Us</h2>
<p class="lead text-muted">Beautifully designed by best interior designers for the best web designers</p>
<p class="text-muted">We can combine beautiful, modern designs with clean, functional. And best of all, we
are super passionate
about our work. Thought does cognitive into follow and rationale annoyed.</p>
</div>
<div class="col-lg-6 mb-4">
<div id="mdb-lightbox-ui"></div>
<div class="d-grid mdb-lightbox">
<figure class="item">
<a href="https://mdbootstrap.com/img/Photos/Horizontal/Architecture/12-col/img%20(10).jpg" class="z-depth-1 rounded" data-size="1600x1067">
<img src="https://mdbootstrap.com/img/Photos/Horizontal/Architecture/12-col/img%20(10).jpg" />
</a>
</figure>
<figure class="item">
<a href="https://mdbootstrap.com/img/Photos/Horizontal/Architecture/12-col/img%20(11).jpg" class="z-depth-1 rounded" data-size="1600x1067">
<img src="https://mdbootstrap.com/img/Photos/Horizontal/Architecture/12-col/img%20(11).jpg" />
</a>
</figure>
<figure class="item">
<a href="https://mdbootstrap.com/img/Photos/Horizontal/Architecture/12-col/img%20(12).jpg" class="z-depth-1 rounded" data-size="1600x1067">
<img src="https://mdbootstrap.com/img/Photos/Horizontal/Architecture/12-col/img%20(12).jpg" />
</a>
</figure>
<figure class="item">
<a href="https://mdbootstrap.com/img/Photos/Horizontal/Architecture/12-col/img%20(13).jpg" class="z-depth-1 rounded" data-size="1600x1067">
<img src="https://mdbootstrap.com/img/Photos/Horizontal/Architecture/12-col/img%20(13).jpg" />
</a>
</figure>
</div>
</div>
</div>
</section>
<!--Section: About Us-->
</div>
<div class="container my-5" id="services">
<!-- Section -->
<section>
<h3 class="font-weight-bold text-center dark-grey-text pb-2">Our Services</h3>
<hr class="w-header my-4">
<p class="lead text-center text-muted pt-2 mb-5">Join thousands of satisfied customers using our template
globally.</p>
<div class="row">
<div class="col-md-6 col-xl-3 mb-4">
<div class="card text-center bg-success text-white">
<div class="card-body">
<p class="mt-4 pt-2"><i class="far fa-object-ungroup fa-4x"></i></p>
<h5 class="font-weight-normal my-4 py-2"><a class="text-white" href="#">Web Design</a></h5>
<p class="mb-4">He polite be object change. Consider no overcame yourself sociable children.</p>
</div>
</div>
</div>
<div class="col-md-6 col-xl-3 mb-4">
<div class="card text-center">
<div class="card-body">
<p class="mt-4 pt-2"><i class="fas fa-mobile-alt fa-4x grey-text"></i></p>
<h5 class="font-weight-normal my-4 py-2"><a class="dark-grey-text" href="#">Mobile App</a></h5>
<p class="text-muted mb-4">He polite be object change. Consider no overcame yourself sociable children.</p>
</div>
</div>
</div>
<div class="col-md-6 col-xl-3 mb-4">
<div class="card text-center deep-purple lighten-1 text-white">
<div class="card-body">
<p class="mt-4 pt-2"><i class="fas fa-chart-line fa-4x"></i></p>
<h5 class="font-weight-normal my-4 py-2"><a class="text-white" href="#">Digital Marketing</a></h5>
<p class="mb-4">He polite be object change. Consider no overcame yourself sociable children.</p>
</div>
</div>
</div>
<div class="col-md-6 col-xl-3">
<div class="card text-center">
<div class="card-body">
<p class="mt-4 pt-2"><i class="fas fa-bullhorn fa-4x grey-text"></i></p>
<h5 class="font-weight-normal my-4 py-2"><a class="dark-grey-text" href="#">Branding Package</a></h5>
<p class="text-muted mb-4">He polite be object change. Consider no overcame yourself sociable children.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Section -->
</div>
<!-- Products -->
<div class="container mt-5" id="products">
<!--Section: Content-->
<section class="dark-grey-text text-center">
<!-- Section heading -->
<h2 class="font-weight-bold mb-4 pb-2">Products</h2>
<!-- Section description -->
<!-- Grid row -->
<div class="row">
<!-- Grid column -->
<div class="col-lg-4 col-md-12 mb-4">
<!-- Featured image -->
<div class="view overlay rounded z-depth-2 mb-4">
<img class="img-fluid" src="https://mdbootstrap.com/img/Photos/Others/images/81.jpg" alt="Sample image">
<a>
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!-- Category -->
<a href="#!" class="pink-text">
<h6 class="font-weight-bold mb-3"><i class="fas fa-map pr-2"></i>Minimalist</h6>
</a>
<!-- Post title -->
<h4 class="font-weight-bold mb-3"><strong>aka Functional, KeeChu standard product</strong></h4>
<!-- Post data -->
<p>by <a class="font-weight-bold">Billy Forester</a>, 15/07/2018</p>
<!-- Excerpt -->
<p class="dark-grey-text">Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit
quo minus id quod maxime placeat facere possimus voluptas.</p>
<!-- Read more button -->
<a class="btn btn-pink btn-rounded btn-md">Select</a>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-lg-4 col-md-6 mb-4">
<!-- Featured image -->
<div class="view overlay rounded z-depth-2 mb-4">
<img class="img-fluid" src="https://mdbootstrap.com/img/Photos/Others/images/43.jpg" alt="Sample image">
<a>
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!-- Category -->
<a href="#!" class="deep-orange-text">
<h6 class="font-weight-bold mb-3"><i class="fas fa-graduation-cap pr-2"></i>Tropical Design</h6>
</a>
<!-- Post title -->
<h4 class="font-weight-bold mb-3"><strong>KeeChu Designed product range</strong></h4>
<!-- Post data -->
<p>by <a class="font-weight-bold">Billy Forester</a>, 13/07/2018</p>
<!-- Excerpt -->
<p class="dark-grey-text">At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis
voluptatum deleniti atque corrupti quos dolores.</p>
<!-- Read more button -->
<a class="btn btn-deep-orange btn-rounded btn-md">Select</a>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-lg-4 col-md-6 mb-4">
<!-- Featured image -->
<div class="view overlay rounded z-depth-2 mb-4">
<img class="img-fluid" src="https://mdbootstrap.com/img/Photos/Others/images/13.jpg" alt="Sample image">
<a>
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!-- Category -->
<a href="#!" class="blue-text">
<h6 class="font-weight-bold mb-3"><i class="fas fa-fire pr-2"></i>Design +</h6>
</a>
<!-- Post title -->
<h4 class="font-weight-bold mb-3"><strong>aka Personality, Premium product</strong></h4>
<!-- Post data -->
<p>by <a class="font-weight-bold">Billy Forester</a>, 11/07/2018</p>
<!-- Excerpt -->
<p class="dark-grey-text">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed
quia consequuntur magni dolores eos qui ratione.</p>
<!-- Read more button -->
<a class="btn btn-info btn-rounded btn-md">Select</a>
</div>
<!-- Grid column -->
</div>
<!-- Grid row -->
</section>
<!--Section: Content-->
</div>
<!-- end Products -->
<!-- FAQ -->
<div class="container my-5" id="faq">
<!--Section: Content-->
<section>
<!-- Section heading -->
<h3 class="font-weight-bold black-text mb-4 pb-2 text-center">Frequently Asked Questions</h3>
<hr class="w-header">
<!-- Section description -->
<p class="lead text-muted mx-auto mt-4 pt-2 mb-5 text-center">Got a question? We've got answers. If you have some other questions, see our support center.</p>
<div class="row">
<div class="col-md-12 col-lg-10 mx-auto mb-5">
<!--Accordion wrapper-->
<div class="accordion md-accordion" id="accordionEx" role="tablist" aria-multiselectable="true">
<!-- Accordion card -->
<div class="card border-top border-bottom-0 border-left border-right border-light">
<!-- Card header -->
<div class="card-header border-bottom border-light" role="tab" id="headingOne1">
<a data-toggle="collapse" data-parent="#accordionEx" href="#collapseOne1" aria-expanded="true" aria-controls="collapseOne1">
<h5 class="black-text font-weight-normal mb-0">
Is this a secure site for purchases? <i class="fas fa-angle-down rotate-icon"></i>
</h5>
</a>
</div>
<!-- Card body -->
<div id="collapseOne1" class="collapse show" role="tabpanel" aria-labelledby="headingOne1" data-parent="#accordionEx">
<div class="card-body">
Absolutely! We work with top payment companies which guarantees your safety and security. All billing information is stored on our payment processing partner which has the most stringent level of certification available in the
payments industry.
</div>
</div>
</div>
<!-- Accordion card -->
<!-- Accordion card -->
<div class="card border-bottom-0 border-left border-right border-light">
<!-- Card header -->
<div class="card-header border-bottom border-light" role="tab" id="headingTwo2">
<a class="collapsed" data-toggle="collapse" data-parent="#accordionEx" href="#collapseTwo2" aria-expanded="false" aria-controls="collapseTwo2">
<h5 class="black-text font-weight-normal mb-0">
How long are your contracts? <i class="fas fa-angle-down rotate-icon"></i>
</h5>
</a>
</div>
<!-- Card body -->
<div id="collapseTwo2" class="collapse" role="tabpanel" aria-labelledby="headingTwo2" data-parent="#accordionEx">
<div class="card-body">
Currently, we only offer monthly subscription. You can upgrade or cancel your monthly account at any time with no further obligation.
</div>
</div>
</div>
<!-- Accordion card -->
<!-- Accordion card -->
<div class="card border-bottom-0 border-left border-right border-light">
<!-- Card header -->
<div class="card-header border-bottom border-light" role="tab" id="headingThree3">
<a class="collapsed" data-toggle="collapse" data-parent="#accordionEx" href="#collapseThree3" aria-expanded="false" aria-controls="collapseThree3">
<h5 class="black-text font-weight-normal mb-0">
Can I cancel my subscription? <i class="fas fa-angle-down rotate-icon"></i>
</h5>
</a>
</div>
<!-- Card body -->
<div id="collapseThree3" class="collapse" role="tabpanel" aria-labelledby="headingThree3" data-parent="#accordionEx">
<div class="card-body">
You can cancel your subscription anytime in your account. Once the subscription is cancelled, you will not be charged next month. You will continue to have access to your account until your current subscription expires.
</div>
</div>
</div>
<!-- Accordion card -->
<!-- Accordion card -->
<div class="card border-left border-right border-light">
<!-- Card header -->
<div class="card-header border-bottom border-light" role="tab" id="headingThree4">
<a class="collapsed" data-toggle="collapse" data-parent="#accordionEx" href="#collapseThree4" aria-expanded="false" aria-controls="collapseThree4">
<h5 class="black-text font-weight-normal mb-0">
Can I request refund? <i class="fas fa-angle-down rotate-icon"></i>
</h5>
</a>
</div>
<!-- Card body -->
<div id="collapseThree4" class="collapse" role="tabpanel" aria-labelledby="headingThree4" data-parent="#accordionEx">
<div class="card-body">
Unfortunately, not. We do not issue full or partial refunds for any reason.
</div>
</div>
</div>
<!-- Accordion card -->
</div>
<!-- Accordion wrapper -->
</div>
</div>
</section>
</div>
<!-- end FAQ -->
<!-- contact us -->
<div class="container z-depth-1 my-5 px-0" id="contact">
<!--Section: Content-->
<section class="my-md-5" style="background-image: url('https://mdbootstrap.com/img/Photos/Horizontal/People/12-col/img%20(97).jpg'); background-size: cover; background-position: center center;">
<div class="rgba-black-strong rounded p-5">
<!-- Section heading -->
<h3 class="text-center font-weight-bold text-white mt-3 mb-5">Contact Us</h3>
<form class="mx-md-5" action="">
<div class="row">
<div class="col-md-6 mb-4">
<div class="card">
<div class="card-body px-4">
<!-- Name -->
<div class="md-form md-outline mt-0">
<input type="text" id="name" class="form-control">
<label for="name">Your Name</label>
</div>
<!-- Email -->
<div class="md-form md-outline">
<input type="text" id="email" class="form-control">
<label for="email">Your Email Address</label>
</div>
<!-- Message -->
<div class="md-form md-outline">
<textarea id="message" class="md-textarea form-control" rows="3"></textarea>
<label for="message">Your Message</label>
</div>
<button type="submit" class="btn btn-primary btn-md btn-block ml-0 mb-0">Submit inquiry</button>
</div>
</div>
</div>
<div class="col-md-5 offset-md-1 mt-md-4 mb-4 white-text">
<h5 class="font-weight-bold">Address</h5>
<p class="mb-0">1632 Main Street</p>
<p class="mb-0">New York, 94126</p>
<p class="mb-4 pb-2">United States</p>
<h5 class="font-weight-bold">Phone</h5>
<p class="mb-4 pb-2">+ 01 234 567 89</p>
<h5 class="font-weight-bold">Email</h5>
<p>[email protected]</p>
</div>
</div>
</form>
</div>
</section>
<!--Section: Content-->
</div>
<!-- end contact us -->
</div>
</main>
<!-- Footer -->
<footer class="page-footer font-small cyan">
<!-- Copyright -->
<div class="footer-copyright text-center py-3">© 2018 Copyright:
<a href="https://mdbootstrap.com/education/bootstrap/"> KeeChu</a>
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->
<!-- End your project here-->
<!-- jQuery -->
<script type="text/javascript" src="js/jquery.min.js"></script>
<!-- Bootstrap tooltips -->
<script type="text/javascript" src="js/popper.min.js"></script>
<!-- Bootstrap core JavaScript -->
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<!-- MDB core JavaScript -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<!-- Your custom scripts (optional) -->
<script type="text/javascript"></script>
</body>
</html>