-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1282 lines (1279 loc) · 60.9 KB
/
index.html
File metadata and controls
1282 lines (1279 loc) · 60.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.7.1/css/bootstrap-datepicker.standalone.min.css">
<link rel="stylesheet" href="now-ui-kit.css" type="text/css">
<link rel="stylesheet" href="assets/css/nucleo-icons.css" type="text/css">
<script src="assets/js/navbar-ontop.js"></script>
<link rel="icon" href="https://templates.pingendo.com/assets/Pingendo_favicon.ico">
<title>Now UI Kit by Creative Tim</title>
<meta name="description" content="Start your development with a beautiful Bootstrap 4 UI kit. It is yours Free.">
<meta name="keywords" content="bootstrap 4, bootstrap 4 uit kit, bootstrap 4 kit, now ui, now ui kit, creative tim, html kit, html css template, web template, bootstrap, bootstrap 4, css3 template, frontend, responsive bootstrap template, bootstrap ui kit, responsive ui kit"> </head>
<body class="">
<nav class="navbar navbar-expand-lg bg-primary navbar-dark fixed-top">
<div class="container">
<a class="navbar-brand" title="Designed by Invision. Coded by Creative Tim and Pingendo" data-placement="bottom" data-toggle="tooltip" href="#">NOW UI KIT</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarNowUIKitFree">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse text-center justify-content-end" id="navbarNowUIKitFree">
<ul class="navbar-nav">
<li class="nav-item mx-1 align-items-center d-flex justify-content-center">
<a class="nav-link" href="#download">
<i class="now-ui-icons arrows-1_cloud-download-93 x2 mr-2"></i> DOWNLOAD</a>
</li>
<li class="nav-item mx-1 align-items-center d-flex justify-content-center">
<a class="nav-link" href="#">
<i class="now-ui-icons files_paper x2 mr-2"></i>COMPONENTS</a>
</li>
</ul>
<a class="btn btn-light text-primary" href="#pro">
<i class="now-ui-icons arrows-1_share-66 mr-1"></i>Upgrade to PRO</a>
<ul class="navbar-nav flex-row justify-content-center mt-2 mt-md-0">
<li class="nav-item mx-1">
<a class="nav-link" href="#" data-placement="bottom" data-toggle="tooltip" title="Follow us on Twitter">
<i class="fa fa-fw fa-twitter fa-2x"></i>
</a>
</li>
<li class="nav-item mx-3 mx-md-1">
<a class="nav-link" href="#" data-placement="bottom" data-toggle="tooltip" title="Like us on Facebook">
<i class="fa fa-fw fa-facebook-official fa-2x"></i>
</a>
</li>
<li class="nav-item ml-1">
<a class="nav-link" href="#" data-placement="bottom" data-toggle="tooltip" title="Follow us on Instagram">
<i class="fa fa-fw fa-instagram fa-2x"></i>
</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="py-5 text-center parallax cover gradient-overlay" style="background-image: url("./assets/img/header.jpg");position:relative;background-position:center center;background-size:cover;">
<div class="container d-flex flex-column">
<div class="row my-auto">
<div class="col-md-12 text-white">
<img class="mb-5" src="./assets/img/now-logo.png" width="100">
<h1 class="mb-3 display-1">NOW UI KIT.</h1>
<h3 class="mb-5">A beautiful Bootstrap 4 UI kit. Yours free.</h3>
</div>
</div>
<div class="row py-3">
<div class="col-md-12">
<h6 class="text-muted mb-5">
<b>DESIGNED BY
<a href="#">
<img src="./assets/img/invision-white-slim.png" width="70px"> </a>. CODED BY
<a href="#">
<img src="./assets/img/creative-tim-white-slim2.png" width="140px"> </a> AND
<img src="./assets/img/pingendo_logo.png" width="30px"> . </b>
</h6>
</div>
</div>
</div>
</div>
<div class="section-overlapping">
<div class="container">
<div class="row">
<div class="col-md-10 mx-auto px-0">
<img src="assets/img/device_1.png" alt="" class="d-none d-md-block img-fluid">
<img src="assets/img/device_2.png" alt="" class="img-fluid d-block d-md-none"> </div>
</div>
</div>
</div>
<div class="pt-5">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3 class="mb-2">
<b>Basic Elements</b>
</h3>
</div>
</div>
<div class="row my-4">
<div class="col-md-12" style="transition: all 0.25s;">
<h4 class="mb-2">Buttons</h4>
<p class="text-muted">
<b>PICK YOUR STYLE</b>
</p>
<div class="row mb-4">
<div class="col-md-12">
<button class="btn btn-primary" type="button">Default</button>
<button class="btn btn-primary rounded" type="button">Round</button>
<button class="btn btn-primary rounded" type="button">
<i class="now-ui-icons ui-2_favourite-28"></i> With Icon</button>
<button class="btn btn-primary btn-icon rounded" type="button">
<i class="now-ui-icons ui-2_favourite-28 lg"></i>
</button>
<button class="btn btn-outline-primary rounded" type="button">Simple</button>
</div>
</div>
<p class="text-muted">
<b>PICK YOUR SIZE</b>
</p>
<div class="row mb-4">
<div class="col-md-12">
<button class="btn btn-primary btn-sm" type="button">Small</button>
<button class="btn btn-primary" type="button">Regular</button>
<button class="btn btn-primary btn-lg" type="button">Large</button>
</div>
</div>
<p class="text-muted">
<b>PICK YOUR COLOR</b>
</p>
<div class="row">
<div class="col-md-12">
<button class="btn btn-primary" type="button">Primary</button>
<button class="btn btn-secondary" type="button">Secondary</button>
<button class="btn btn-info" type="button">Info</button>
<button class="btn btn-success" type="button">Success</button>
<button class="btn btn-warning" type="button">Warning</button>
<button class="btn btn-danger" type="button">Danger</button>
<button class="btn btn-link" type="button">Neutral</button>
</div>
</div>
</div>
</div>
<div class="row my-5">
<div class="col-md-12">
<h4 class="mb-3">Links</h4>
<a class="btn btn-link text-primary" role="button" href="#">Primary</a>
<a class="btn btn-link text-secondary " role="button" href="#">Secondary</a>
<a href="#" class="btn btn-link text-info " role="button">Info</a>
<a class="btn btn-link text-success" role="button" href="#">Success</a>
<a class="btn btn-link text-warning " role="button" href="#">Warning</a>
<a href="#" class="btn btn-link text-danger" role="button">Danger</a>
</div>
</div>
<div class="row my-5">
<div class="col-md-12">
<h4 class="mb-2">Inputs</h4>
<p class="text-muted">
<b>FORM CONTROLS</b>
</p>
<div class="row mb-5">
<div class="col-lg-3 col-md-6 col-6">
<form class="">
<div class="form-group">
<input type="text" class="form-control" placeholder="Regular"> </div>
</form>
</div>
<div class="col-lg-3 col-md-1 col-6">
<form class="">
<div class="form-group is-valid">
<input type="text" class="form-control" placeholder="Success" value="Success"> </div>
</form>
</div>
<div class="col-lg-3 col-md-6 col-6">
<form class="">
<div class="form-group is-invalid">
<input type="text" class="form-control" placeholder="Error input" value="Error input"> </div>
</form>
</div>
<div class="col-lg-3 col-md-6 col-6">
<form class="">
<div class="form-group">
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text" id="basic-addon1">
<i class="fa fa-fw fa-user-circle"></i>
</span>
</div>
<input type="text" class="form-control" id="inlineFormInputGroup" placeholder="Left Font Awesome Icon"> </div>
</div>
</form>
</div>
<div class="col-lg-3 col-md-6 col-6">
<form class="">
<div class="form-group">
<div class="input-group">
<input type="text" class="form-control" id="inlineFormInputGroup" placeholder="Right Nucleo Icon">
<div class="input-group-append">
<span class="input-group-text" id="basic-addon1">
<i class="now-ui-icons users_single-02 md"></i>
</span>
</div>
</div>
</div>
</form>
</div>
</div>
<div class="row py-3">
<div class="col-md-3 col-6">
<p class="text-muted">
<b>CHECKBOXES</b>
</p>
<form class="">
<div class="form-group">
<div class="custom-control custom-checkbox pl-0">
<input class="custom-control-input" type="checkbox" id="customCheck1" value="on">
<label class="custom-control-label" for="customCheck1">Unchecked</label>
</div>
</div>
<div class="form-group">
<div class="custom-control custom-checkbox pl-0">
<input class="custom-control-input" type="checkbox" id="customCheck2" checked="" value="on">
<label class="custom-control-label" for="customCheck2">Checked</label>
</div>
</div>
<div class="form-group">
<div class="custom-control custom-checkbox pl-0">
<input class="custom-control-input" type="checkbox" id="customCheck3" disabled="" value="on">
<label class="custom-control-label" for="customCheck3">Disabled uchecked</label>
</div>
</div>
<div class="form-group">
<div class="custom-control custom-checkbox pl-0">
<input class="custom-control-input" type="checkbox" id="customCheck1" disabled="" checked="" value="on">
<label class="custom-control-label" for="customCheck1">Disabled checked</label>
</div>
</div>
</form>
</div>
<div class="col-md-3 col-6">
<p class="text-muted">
<b>RADIOS</b>
</p>
<form>
<div class="custom-control custom-radio">
<input type="radio" id="customRadio1" name="customRadio" class="custom-control-input" value="on">
<label class="custom-control-label" for="customRadio1">Radio is off</label>
</div>
<div class="custom-control custom-radio">
<input type="radio" id="customRadio2" name="customRadio" class="custom-control-input" value="on" checked="">
<label class="custom-control-label" for="customRadio2">Radio is on</label>
</div>
<div class="custom-control custom-radio">
<input type="radio" id="customRadio3" name="customRadio2" value="on" disabled="" class="custom-control-input">
<label class="custom-control-label" for="customRadio3">Disabled radio is off</label>
</div>
<div class="custom-control custom-radio">
<input type="radio" id="customRadio4" name="customRadio2" class="custom-control-input" value="on" disabled="" checked="">
<label class="custom-control-label" for="customRadio4">Disabled radio is on</label>
</div>
</form>
</div>
<div class="col-md-3 col-6">
<p class="text-muted">
<b>TOGGLE BUTTONS</b>
</p>
<form class="">
<div class="form-group mb-2">
<div class="custom-control custom-toggle pl-0">
<input class="custom-control-input" type="checkbox" id="customCheck1" value="on" checked="">
<label class="custom-control-label"></label>
</div>
</div>
<div class="form-group">
<div class="custom-control custom-toggle pl-0">
<input class="custom-control-input" type="checkbox" value="on" data-off-label="OFF" id="customCheck1">
<label class="custom-control-label"></label>
</div>
</div>
</form>
</div>
<div class="col-3 col-md-3">
<p class="text-muted">
<b>SLIDERS</b>
</p>
<form class="">
<div class="form-group">
<div class="custom-control custom-slider pl-0">
<input type="range" min="1" max="100" value="50" class="slider" id="myRange">
<label class="custom-control-label"></label>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="row my-5">
<div class="col-md-6">
<h4 class="my-3">Menu</h4>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<div class="container">
<a class="navbar-brand" href="#">MENU</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarSupportedContent3">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent3">
<ul class="navbar-nav mr-auto">
<li class="nav-item mx-1">
<a class="nav-link active" href="#">LINK</a>
</li>
<li class="nav-item mx-1">
<a class="nav-link" href="#">LINK</a>
</li>
<li class="nav-item dropdown mx-1">
<a class="nav-link dropdown-toggle" href="http://example.com" id="navbarDropdownMenuLink" data-toggle="dropdown"> DROPDOWN</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</li>
</ul>
</div>
</div>
</nav>
</div>
<div class="col-md-6">
<h4 class="my-3">Menu with Icons</h4>
<nav class="navbar navbar-expand-lg navbar-dark bg-info">
<div class="container">
<a class="navbar-brand" href="#">ICONS</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarSupportedContent4">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent4">
<ul class="navbar-nav ml-auto">
<li class="nav-item mx-2">
<a class="nav-link" href="#">
<i class="now-ui-icons ui-1_send x2"></i>
</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="#">
<i class="now-ui-icons users_single-02 x2"></i>
</a>
</li>
<li class="nav-item dropdown ml-2">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" data-toggle="dropdown">
<i class="now-ui-icons ui-1_settings-gear-63 x2"></i>
</a>
<div class="dropdown-menu dropdown-menu-right">
<h6 class="dropdown-header">Dropdown header</h6>
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else here</a>
<div class="divider"></div>
<a class="dropdown-item" href="#">Separated link</a>
<div class="divider"></div>
<a class="dropdown-item" href="#">One more separated link</a>
</div>
</li>
</ul>
</div>
</div>
</nav>
</div>
</div>
</div>
</div>
<div>
<div class="container">
<div class="row">
<div class="col-md-12">
<h4 class="mb-3">Navigation</h4>
</div>
</div>
</div>
</div>
<div style="background-image: url("assets/img/bg7.jpg"); background-position: center center; background-size: cover;" class="pb-5">
<nav class="navbar navbar-expand-md bg-primary navbar-dark mb-4">
<div class="container">
<a class="navbar-brand" href="#">PRIMARY COLOR</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarPrimaryContent">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse text-center justify-content-end" id="navbarPrimaryContent">
<ul class="navbar-nav">
<li class="nav-item mx-1">
<a class="nav-link active align-items-center d-flex" href="#">
<i class="now-ui-icons objects_globe x2 mr-2"></i> DISCOVER</a>
</li>
<li class="nav-item mx-1">
<a class="nav-link align-items-center d-flex" href="#">
<i class="now-ui-icons users_circle-08 x2 mr-2"></i> PROFILE</a>
</li>
<li class="nav-item mx-1">
<a class="nav-link align-items-center d-flex" href="#">
<i class="now-ui-icons ui-1_settings-gear-63 x2 mr-2"></i> SETTINGS</a>
</li>
</ul>
</div>
</div>
</nav>
<nav class="navbar navbar-expand-md navbar-dark mb-4 bg-info">
<div class="container">
<a class="navbar-brand" href="#">INFO COLOR</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarInfoContent">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse text-center justify-content-end" id="navbarInfoContent">
<ul class="navbar-nav">
<li class="nav-item mx-1">
<a class="nav-link active align-items-center d-flex" href="#">DISCOVER</a>
</li>
<li class="nav-item mx-1">
<a class="nav-link align-items-center d-flex" href="#">PROFILE</a>
</li>
<li class="nav-item mx-1">
<a class="nav-link align-items-center d-flex" href="#">SETTINGS</a>
</li>
</ul>
</div>
</div>
</nav>
<nav class="navbar navbar-expand-md navbar-dark mb-4 bg-success">
<div class="container">
<a class="navbar-brand" href="#">SUCCESS COLOR</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarSuccessContent">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse text-center justify-content-end" id="navbarSuccessContent">
<ul class="navbar-nav">
<li class="nav-item mx-1">
<a class="nav-link active align-items-center d-flex" href="#">
<i class="d-inline now-ui-icons objects_globe x2"></i>
</a>
</li>
<li class="nav-item mx-1">
<a class="nav-link align-items-center d-flex" href="#">
<i class="d-inline now-ui-icons users_circle-08 x2"></i>
</a>
</li>
<li class="nav-item mx-1">
<a class="nav-link align-items-center d-flex" href="#">
<i class="d-inline now-ui-icons ui-1_settings-gear-63 x2"></i>
</a>
</li>
</ul>
</div>
</div>
</nav>
<nav class="navbar navbar-expand-md navbar-dark mb-4 bg-warning">
<div class="container">
<a class="navbar-brand" href="#">WARNING COLOR</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarWarningContent">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse text-center justify-content-end" id="navbarWarningContent">
<ul class="navbar-nav">
<li class="nav-item mx-1">
<a class="nav-link align-items-center d-flex" href="#">
<i class="fa fa-fw fa-2x fa-facebook-square"></i>
</a>
</li>
<li class="nav-item mx-1">
<a class="nav-link align-items-center d-flex" href="#">
<i class="fa fa-twitter fa-fw fa-2x"></i>
</a>
</li>
<li class="nav-item mx-1">
<a class="nav-link align-items-center d-flex" href="#">
<i class="fa d-inline fa-google-plus fa-2x"></i>
</a>
</li>
<li class="nav-item mx-1">
<a class="nav-link align-items-center d-flex" href="#">
<i class="fa d-inline fa-instagram fa-2x"></i>
</a>
</li>
</ul>
</div>
</div>
</nav>
<nav class="navbar navbar-expand-md navbar-dark mb-4 bg-danger">
<div class="container">
<a class="navbar-brand" href="#">DANGER COLOR</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarDangerContent">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse text-center justify-content-end" id="navbarDangerContent">
<ul class="navbar-nav">
<li class="nav-item mx-1">
<a class="nav-link align-items-center d-flex" href="#">
<i class="fa fa-facebook-square fa-fw fa-2x mr-2"></i> SHARE</a>
</li>
<li class="nav-item mx-1">
<a class="nav-link align-items-center d-flex" href="#">
<i class="fa fa-twitter fa-fw fa-2x mr-2"></i> TWEET</a>
</li>
<li class="nav-item mx-1">
<a class="nav-link align-items-center d-flex" href="#">
<i class="fa fa-pinterest fa-fw fa-2x mr-2"></i> PIN</a>
</li>
</ul>
</div>
</div>
</nav>
<nav class="navbar navbar-expand-md navbar-dark mb-5 pb-5 transparent">
<div class="container">
<a class="navbar-brand" href="#">TRANSPARENT</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarTransparentContent">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse text-center justify-content-end" id="navbarTransparentContent">
<ul class="navbar-nav">
<li class="nav-item mx-1">
<a class="nav-link align-items-center d-flex" href="#">
<i class="fa fa-facebook-square fa-fw fa-2x mr-2"></i> FACEBOOK</a>
</li>
<li class="nav-item mx-1">
<a class="nav-link align-items-center d-flex" href="#">
<i class="fa fa-twitter fa-fw fa-2x mr-2"></i> TWITTER</a>
</li>
<li class="nav-item mx-1">
<a class="nav-link align-items-center d-flex" href="#">
<i class="fa fa-instagram fa-fw fa-2x mr-2"></i> INSTAGRAM</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
<div class="py-5 bg-gray">
<div class="container">
<div class="row">
<div class="col-md-6">
<p class="text-secondary">
<b>TABS WITH ICONS ON CARD</b>
</p>
<div class="card mb-4">
<ul class="nav nav-tabs px-1 py-3 bg-light flex-column flex-lg-row justify-content-md-center text-center">
<li class="nav-item">
<a class="active nav-link" href="" data-toggle="tab" data-target="#tabone">
<i class="now-ui-icons objects_umbrella-13 mr-1"></i>Home</a>
</li>
<li class="nav-item ">
<a href="" class="nav-link" data-toggle="tab" data-target="#tabtwo">
<i class="now-ui-icons shopping_cart-simple mr-1"></i>Profile</a>
</li>
<li class="nav-item">
<a href="" class="nav-link" data-toggle="tab" data-target="#tabthree">
<i class="now-ui-icons shopping_shop mr-1"></i>Messages</a>
</li>
<li class="nav-item">
<a href="" class="nav-link" data-toggle="tab" data-target="#tabfour">
<i class="now-ui-icons ui-2_settings-90 mr-1"></i>Settings</a>
</li>
</ul>
<div class="card-body">
<div class="tab-content mt-2">
<div class="tab-pane fade show active text-center" id="tabone" role="tabpanel">
<p class="">I think that’s a responsibility that I have, to push possibilities, to show people, this is the level that things could be at. So when you get something that has the name Kanye West on it, it’s supposed to be pushing the furthest possibilities.
I will be the leader of a company that ends up being worth billions of dollars, because I got the answers. I understand culture. I am the nucleus.</p>
</div>
<div class="tab-pane fade text-center" id="tabtwo" role="tabpanel">
<p class="">I will be the leader of a company that ends up being worth billions of dollars, because I got the answers. I understand culture. I am the nucleus. I think that’s a responsibility that I have, to push possibilities, to show people, this
is the level that things could be at. I think that’s a responsibility that I have, to push possibilities, to show people, this is the level that things could be at.</p>
</div>
<div class="tab-pane fade text-center" id="tabthree" role="tabpanel">
<p class="">I think that’s a responsibility that I have, to push possibilities, to show people, this is the level that things could be at. So when you get something that has the name Kanye West on it, it’s supposed to be pushing the furthest possibilities.
I will be the leader of a company that ends up being worth billions of dollars, because I got the answers. I understand culture. I am the nucleus.</p>
</div>
<div class="tab-pane fade text-center" id="tabfour" role="tabpanel">
<p class="">"I will be the leader of a company that ends up being worth billions of dollars, because I got the answers. I understand culture. I am the nucleus. I think that’s a responsibility that I have, to push possibilities, to show people, this
is the level that things could be at."</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<p class="text-secondary">
<b>TABS WITH BACKGROUND ON CARD</b>
</p>
<div class="mb-4 card border-0">
<ul class="nav nav-tabs flex-column flex-lg-row p-3 bg-primary justify-content-md-center">
<li class="nav-item mr-1 text-center">
<a class="active nav-link rounded" href="" data-toggle="pill" data-target="#tabBackgroundOne">Home</a>
</li>
<li class="nav-item mr-1 text-center">
<a href="" class="nav-link rounded" data-toggle="pill" data-target="#tabBackgroundTwo">Profile</a>
</li>
<li class="nav-item mr-1 text-center">
<a href="" class="nav-link rounded" data-toggle="pill" data-target="#tabBackgroundThree">Messages</a>
</li>
<li class="nav-item text-center">
<a href="" class="nav-link rounded" data-toggle="pill" data-target="#tabBackgroundFour">Settings</a>
</li>
</ul>
<div class="card-body">
<div class="tab-content mt-2">
<div class="tab-pane fade show active text-center" id="tabBackgroundOne" role="tabpanel">
<p class="">I think that’s a responsibility that I have, to push possibilities, to show people, this is the level that things could be at. So when you get something that has the name Kanye West on it, it’s supposed to be pushing the furthest possibilities.
I will be the leader of a company that ends up being worth billions of dollars, because I got the answers. I understand culture. I am the nucleus.</p>
</div>
<div class="tab-pane fade text-center" id="tabBackgroundTwo" role="tabpanel">
<p class="">I will be the leader of a company that ends up being worth billions of dollars, because I got the answers. I understand culture. I am the nucleus. I think that’s a responsibility that I have, to push possibilities, to show people, this
is the level that things could be at. I think that’s a responsibility that I have, to push possibilities, to show people, this is the level that things could be at.</p>
</div>
<div class="tab-pane fade text-center" id="tabBackgroundThree" role="tabpanel">
<p class="">I think that’s a responsibility that I have, to push possibilities, to show people, this is the level that things could be at. So when you get something that has the name Kanye West on it, it’s supposed to be pushing the furthest possibilities.
I will be the leader of a company that ends up being worth billions of dollars, because I got the answers. I understand culture. I am the nucleus.</p>
</div>
<div class="tab-pane fade text-center" id="tabBackgroundFour" role="tabpanel">
<p class="">"I will be the leader of a company that ends up being worth billions of dollars, because I got the answers. I understand culture. I am the nucleus. I think that’s a responsibility that I have, to push possibilities, to show people, this
is the level that things could be at."</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="py-5">
<div class="container my-5">
<div class="row">
<div class="col-md-6">
<h4 class="mb-3">Progress Bars</h4>
<p class="text-muted"> DEFAULT </p>
<div class="progress">
<div class="progress-bar bg-dark" role="progressbar" style="width: 25%">25%</div>
</div>
<p class="mt-3 text-primary"> PRIMARY </p>
<div class="progress">
<div class="progress-bar bg-primary" role="progressbar" style="width: 60%">60%</div>
</div>
</div>
<div class="col-md-6">
<h4 class="mb-3">Pagination</h4>
<ul class="pagination py-3 mb-0">
<li class="page-item active">
<a class="page-link " href="#">1</a>
</li>
<li class="page-item">
<a class="page-link" href="#">2</a>
</li>
<li class="page-item">
<a class="page-link" href="#">3</a>
</li>
<li class="page-item">
<a class="page-link" href="#">4</a>
</li>
<li class="page-item">
<a class="page-link" href="#">5</a>
</li>
</ul>
<ul class="pagination pt-2">
<li class="page-item">
<a class="page-link" href="#">
<span>«</span>
<span class="sr-only">Previous</span>
</a>
</li>
<li class="page-item">
<a class="page-link " href="#">1</a>
</li>
<li class="page-item active bg-secondary">
<a class="page-link" href="#">2</a>
</li>
<li class="page-item">
<a class="page-link" href="#">3</a>
</li>
<li class="page-item">
<a class="page-link" href="#">
<span>»</span>
<span class="sr-only">Next</span>
</a>
</li>
</ul>
</div>
</div>
<div class="row mt-3">
<div class="col-md-6">
<h4 class="mb-3">Navigation Pills </h4>
<ul class="nav nav-pills" role="tablist">
<li class="nav-item circle">
<a href="#" class="nav-link">
<i class="fa fa-diamond"></i>
</a>
</li>
<li class="nav-item circle ">
<a href="#" class="nav-link active">
<i class="fa fa-thermometer-full"></i>
</a>
</li>
<li class="nav-item circle">
<a href="#" class="nav-link">
<i class="fa fa-suitcase"></i>
</a>
</li>
<li class="nav-item circle">
<a href="#" class="nav-link disabled">
<i class="fa fa fa-exclamation"></i>
</a>
</li>
</ul>
</div>
<div class="col-md-6">
<h4 class="mb-3">Labels</h4>
<span class="badge badge-primary badge-pill mr-1">PRIMARY</span>
<span class="badge badge-secondary badge-pill mr-1">SECONDARY</span>
<span class="badge badge-pill badge-success mr-1">SUCCESS</span>
<span class="badge badge-pill badge-info mr-1">INFO</span>
<span class="badge badge-pill badge-warning mr-1">WARNING</span>
<span class="badge badge-pill badge-danger">DANGER</span>
</div>
</div>
</div>
</div>
<div>
<div class="container">
<div class="row">
<div class="col-md-12">
<h4 class="my-3">Notifications</h4>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col mb-2 px-0">
<div class="alert alert-success text-white px-5" role="alert">
<div class="container">
<i class="now-ui-icons ui-2_like lg pull-left mr-3"></i>
<strong>WELL DONE!</strong>
<span> You successfully read this important alert message. </span>
<button type="button" class="close text-white" data-dismiss="alert">
<i class="now-ui-icons ui-1_simple-remove"></i>
</button>
</div>
</div>
<div class="alert alert-info text-white px-5" role="alert">
<div class="container">
<i class="now-ui-icons travel_info lg pull-left mr-3"></i>
<strong>HEADS UP!</strong>
<span> This alert needs your attention, but it's not super important. </span>
<button type="button" class="close text-white" data-dismiss="alert">
<i class="now-ui-icons ui-1_simple-remove"></i>
</button>
</div>
</div>
<div class="alert alert-warning text-white px-5" role="alert">
<div class="container">
<i class="now-ui-icons ui-1_bell-53 lg pull-left mr-3"></i>
<strong>WARNING!</strong>
<span> Better check yourself, you're not looking too good. </span>
<button type="button" class="close text-white" data-dismiss="alert">
<i class="now-ui-icons ui-1_simple-remove"></i>
</button>
</div>
</div>
<div class="alert alert-danger text-white px-5" role="alert">
<div class="container">
<i class="now-ui-icons objects_support-17 lg pull-left mr-3"></i>
<strong>OH SNAP!</strong>
<span> Change a few things up and try submitting again. </span>
<button type="button" class="close text-white" data-dismiss="alert">
<i class="now-ui-icons ui-1_simple-remove"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="py-5">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3 class="mb-4">
<b>Typography</b>
</h3>
</div>
</div>
<div class="row">
<div class="ml-3 col-3 d-flex align-self-center">
<p class="text-muted">Header 1</p>
</div>
<div class="col">
<h1>The Life of Now UI Kit</h1>
</div>
</div>
<div class="row">
<div class="ml-3 col-3 d-flex align-self-center">
<p class="text-muted">Header 2</p>
</div>
<div class="col">
<h2>The Life of Now UI Kit</h2>
</div>
</div>
<div class="row">
<div class="ml-3 col-3 d-flex align-self-center">
<p class="text-muted">Header 3</p>
</div>
<div class="col">
<h3>The Life of Now UI Kit</h3>
</div>
</div>
<div class="row">
<div class="ml-3 col-3 d-flex align-self-center">
<p class="text-muted">Header 4</p>
</div>
<div class="col">
<h4>The Life of Now UI Kit</h4>
</div>
</div>
<div class="row">
<div class="ml-3 col-3 d-flex align-self-center">
<p class="text-muted">Header 5</p>
</div>
<div class="col">
<h5>The Life of Now UI Kit</h5>
</div>
</div>
<div class="row">
<div class="ml-3 col-3 d-flex align-self-center">
<p class="text-muted">Header 6</p>
</div>
<div class="col">
<h6>THE LIFE OF NOW UI KIT</h6>
</div>
</div>
<div class="row">
<div class="ml-3 col-3 d-flex align-items-center">
<p class="text-muted">Paragraph</p>
</div>
<div class="col pr-0">
<p>I will be the leader of a company that ends up being worth billions of dollars, because I got the answers. I understand culture. I am the nucleus. I think that’s a responsibility that I have, to push possibilities, to show people, this is the
level that things could be at.</p>
</div>
</div>
<div class="row">
<div class="ml-3 col-3 d-flex align-self-center">
<p class="text-muted">Quote</p>
</div>
<div class="col pr-0">
<blockquote class="blockquote blockquote-primary">
<p>"I will be the leader of a company that ends up being worth billions of dollars, because I got the answers. I understand culture. I am the nucleus. I think that’s a responsibility that I have, to push possibilities, to show people, this is
the level that things could be at."</p>
<footer class="blockquote-footer">NOAA</footer>
</blockquote>
</div>
</div>
<div class="row my-3">
<div class="ml-3 col-3 d-flex align-items-center">
<p class="text-muted">Muted Text</p>
</div>
<div class="col">
<p class="text-muted">I will be the leader of a company that ends up being worth billions of dollars, because I got the answers...</p>
</div>
</div>
<div class="row my-3">
<div class="ml-3 col-3 d-flex align-self-center">
<p class="text-muted">Primary Text</p>
</div>
<div class="col">
<p class="text-primary">I will be the leader of a company that ends up being worth billions of dollars, because I got the answers...</p>
</div>
</div>
<div class="row my-3">
<div class="ml-3 col-3 align-self-center">
<p class="text-muted">Secondary Text</p>
</div>
<div class="col">
<p class="text-secondary">I will be the leader of a company that ends up being worth billions of dollars, because I got the answers...</p>
</div>
</div>
<div class="row my-3">
<div class="ml-3 col-3 d-flex align-self-center">
<p class="text-muted">Info Text</p>
</div>
<div class="col">
<p class="text-info">I will be the leader of a company that ends up being worth billions of dollars, because I got the answers...</p>
</div>
</div>
<div class="row my-3">
<div class="ml-3 col-3 d-flex align-self-center">
<p class="text-muted">Success Text</p>
</div>
<div class="col">
<p class="text-success">I will be the leader of a company that ends up being worth billions of dollars, because I got the answers...</p>
</div>
</div>
<div class="row my-3">
<div class="ml-3 col-3 d-flex align-self-center">
<p class="text-muted">Warning Text</p>
</div>
<div class="col">
<p class="text-warning">I will be the leader of a company that ends up being worth billions of dollars, because I got the answers...</p>
</div>
</div>
<div class="row my-3">
<div class="ml-3 col-3 d-flex align-self-center">
<p class="text-muted">Danger Text</p>
</div>
<div class="col">
<p class="text-danger">I will be the leader of a company that ends up being worth billions of dollars, because I got the answers...</p>
</div>
</div>
<div class="row mt-3">
<div class="ml-3 col-3 d-flex align-self-center">
<p class="text-muted">Small Tag</p>
</div>
<div class="col">
<h2> Header with small subtitle
<br>
<small>Use "small" tag for the headers</small>
</h2>
</div>
</div>
</div>
</div>
<div class="py-5">
<div class="container">
<div class="row">
<div class="col-md-12">
<h4 class="mt-3 mb-5">Images</h4>
</div>
</div>
<div class="row">
<div class="col-md-2">
<p class="text-muted">
<b>IMAGE</b>
</p>
<img class="img-fluid d-block rounded" src="assets/img/avatar.jpg"> </div>
<div class="col-md-2">
<p class="text-muted">
<b>CIRCLE IMAGE</b>
</p>
<img class="img-fluid d-block rounded-circle" src="assets/img/avatar.jpg"> </div>
<div class="col-md-2">
<p class="text-muted">
<b>RAISED</b>
</p>
<img class="img-fluid d-block shadow rounded" src="assets/img/avatar.jpg"> </div>
<div class="col-md-2">
<p class="text-muted">
<b>CIRCLE RAISED</b>
</p>
<img class="img-fluid d-block shadow rounded-circle" src="assets/img/avatar.jpg"> </div>
</div>
</div>
</div>
<div class="py-5 mt-4">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3 class="mt-3">
<b>Javascript components</b>
</h3>
</div>
</div>
<div class="row">
<div class="col-md-6">
<h4 class="mb-3">Modal</h4>
<div>
<a class="btn btn-primary" href="#" data-toggle="modal" data-target="#modal1">Launch Modal</a>
<a class="btn btn-warning" href="#" data-toggle="modal" data-target="#modal2">Launch Modal Mini</a>
</div>
</div>
<div class="col-md-6">
<h4 class="mb-3">Popovers</h4>
<button class="btn btn-secondary" type="button" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus." data-toggle="popover" title="Popover On Left" data-placement="left">On left</button>
<button class="btn btn-secondary" type="button" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus." data-placement="top" data-toggle="popover" title="Popover On Top">On top</button>
<button class="btn btn-secondary" type="button" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus." data-toggle="popover" title="Popover On Right" data-placement="right">On right</button>
<button class="btn btn-secondary" type="button" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus." data-toggle="popover" title="Popover On Bottom" data-placement="bottom">On bottom</button>
</div>
</div>
<div class="row mt-5">
<div class="col-md-4">
<h4 class="mb-3">Datepicker</h4>
<input type="text" class="form-control" id="datepicker-example" placeholder="05/03/1965"> </div>
<div class="col-md-2"> </div>
<div class="col-md-6">
<h4 class="mb-3">Tooltips</h4>
<button class="btn btn-secondary" type="button" data-toggle="tooltip" title="Tooltip on left" data-placement="left" data-animation="true" data-delay="100">On left</button>
<button class="btn btn-secondary" type="button" data-toggle="tooltip" title="Tooltip on top" data-placement="top" data-animation="true" data-delay="100">On top</button>
<button class="btn btn-secondary" type="button" data-toggle="tooltip" title="Tooltip on right" data-placement="right" data-animation="true" data-delay="100">On bottom</button>
<button class="btn btn-secondary" type="button" data-toggle="tooltip" title="Tooltip on bottom" data-placement="bottom" data-animation="true" data-delay="100">On right</button>
</div>
</div>
</div>
</div>
<div class="py-5">
<div class="container">
<div class="row">
<div class="col-md-12">
<h4 class="mb-4">Carousel</h4>
</div>
</div>
<div class="row my-5">