-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontribute2.php
1493 lines (1419 loc) · 72.6 KB
/
contribute2.php
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>
<!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
<!--[if !IE]><!-->
<html lang="en">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<title>NotesAcademy | Home</title>
<meta name="description" content="The Project a Bootstrap-based, Responsive HTML5 Template">
<meta name="author" content="htmlcoder.me">
<!-- Mobile Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link rel="shortcut icon" href="images/favicon.ico">
<!-- Web Fonts -->
<link href='http://fonts.googleapis.com/css?family=Roboto:400,300,300italic,400italic,500,500italic,700,700italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Raleway:700,400,300' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=PT+Serif' rel='stylesheet' type='text/css'>
<!-- Bootstrap core CSS -->
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<!-- Font Awesome CSS -->
<link href="fonts/font-awesome/css/font-awesome.css" rel="stylesheet">
<!-- Fontello CSS -->
<link href="fonts/fontello/css/fontello.css" rel="stylesheet">
<!-- Plugins -->
<link href="plugins/magnific-popup/magnific-popup.css" rel="stylesheet">
<link href="plugins/rs-plugin/css/settings.css" rel="stylesheet">
<link href="css/animations.css" rel="stylesheet">
<link href="plugins/owl-carousel/owl.carousel.css" rel="stylesheet">
<link href="plugins/owl-carousel/owl.transitions.css" rel="stylesheet">
<link href="plugins/hover/hover-min.css" rel="stylesheet">
<!-- the project core CSS file -->
<link href="css/style.css" rel="stylesheet" >
<!-- Color Scheme (In order to change the color scheme, replace the blue.css with the color scheme that you prefer)-->
<link href="css/skins/light_blue.css" rel="stylesheet">
<!-- Custom css -->
<link href="css/custom.css" rel="stylesheet">
<style>
.btn-circle {
width: 300px;
height: 300px;
text-align: center;
padding: 6px 0;
font-size: 12px;
line-height: 1.42;
border-radius: 150px;
}
.btn-circle-sm {
width: 50px;
height: 50px;
text-align: center;
padding: 6px 0;
font-size: 12px;
line-height: 1.42;
border-radius: 25px;
}
</style>
</head>
<!-- body classes: -->
<!-- "boxed": boxed layout mode e.g. <body class="boxed"> -->
<!-- "pattern-1 ... pattern-9": background patterns for boxed layout mode e.g. <body class="boxed pattern-1"> -->
<!-- "transparent-header": makes the header transparent and pulls the banner to top -->
<!-- "page-loader-1 ... page-loader-6": add a page loader to the page (more info @components-page-loaders.html) -->
<body class="no-trans front-page transparent-header ">
<!-- scrollToTop -->
<!-- ================ -->
<div class="scrollToTop circle"><i class="icon-up-open-big"></i></div>
<!-- page wrapper start -->
<!-- ================ -->
<div class="page-wrapper">
<!-- header-container start -->
<div class="header-container">
<!-- header-top start -->
<!-- classes: -->
<!-- "dark": dark version of header top e.g. class="header-top dark" -->
<!-- "colored": colored version of header top e.g. class="header-top colored" -->
<!-- ================ -->
<div class="header-top dark ">
<div class="container">
<div class="row">
<div class="col-xs-3 col-sm-6 col-md-9">
<!-- header-top-first start -->
<!-- ================ -->
<div class="header-top-first clearfix">
<ul class="social-links circle small clearfix hidden-xs">
<li class="twitter"><a target="_blank" href="http://www.twitter.com"><i class="fa fa-twitter"></i></a></li>
<li class="skype"><a target="_blank" href="http://www.skype.com"><i class="fa fa-skype"></i></a></li>
<li class="linkedin"><a target="_blank" href="http://www.linkedin.com"><i class="fa fa-linkedin"></i></a></li>
<li class="googleplus"><a target="_blank" href="http://plus.google.com"><i class="fa fa-google-plus"></i></a></li>
<li class="youtube"><a target="_blank" href="http://www.youtube.com"><i class="fa fa-youtube-play"></i></a></li>
<li class="flickr"><a target="_blank" href="http://www.flickr.com"><i class="fa fa-flickr"></i></a></li>
<li class="facebook"><a target="_blank" href="http://www.facebook.com"><i class="fa fa-facebook"></i></a></li>
<li class="pinterest"><a target="_blank" href="http://www.pinterest.com"><i class="fa fa-pinterest"></i></a></li>
</ul>
<div class="social-links hidden-lg hidden-md hidden-sm circle small">
<div class="btn-group dropdown">
<button type="button" class="btn dropdown-toggle" data-toggle="dropdown"><i class="fa fa-share-alt"></i></button>
<ul class="dropdown-menu dropdown-animation">
<li class="twitter"><a target="_blank" href="http://www.twitter.com"><i class="fa fa-twitter"></i></a></li>
<li class="skype"><a target="_blank" href="http://www.skype.com"><i class="fa fa-skype"></i></a></li>
<li class="linkedin"><a target="_blank" href="http://www.linkedin.com"><i class="fa fa-linkedin"></i></a></li>
<li class="googleplus"><a target="_blank" href="http://plus.google.com"><i class="fa fa-google-plus"></i></a></li>
<li class="youtube"><a target="_blank" href="http://www.youtube.com"><i class="fa fa-youtube-play"></i></a></li>
<li class="flickr"><a target="_blank" href="http://www.flickr.com"><i class="fa fa-flickr"></i></a></li>
<li class="facebook"><a target="_blank" href="http://www.facebook.com"><i class="fa fa-facebook"></i></a></li>
<li class="pinterest"><a target="_blank" href="http://www.pinterest.com"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
</div>
<ul class="list-inline hidden-sm hidden-xs">
<li><i class="fa fa-map-marker pr-5 pl-10"></i>One Infinity Loop Av, Tk 123456</li>
<li><i class="fa fa-phone pr-5 pl-10"></i>+12 123 123 123</li>
<li><i class="fa fa-envelope-o pr-5 pl-10"></i> theproject@mail.com</li>
</ul>
</div>
<!-- header-top-first end -->
</div>
<div class="col-xs-9 col-sm-6 col-md-3">
<!-- header-top-second start -->
<!-- ================ -->
<div id="header-top-second" class="clearfix">
<!-- header top dropdowns start -->
<!-- ================ -->
<div class="header-top-dropdown text-right">
<div class="btn-group">
<a href="page-signup.html" class="btn btn-default btn-sm"><i class="fa fa-user pr-10"></i> Sign Up</a>
</div>
<div class="btn-group dropdown">
<button type="button" class="btn dropdown-toggle btn-default btn-sm" data-toggle="dropdown"><i class="fa fa-lock pr-10"></i> Login</button>
<ul class="dropdown-menu dropdown-menu-right dropdown-animation">
<li>
<form class="login-form margin-clear">
<div class="form-group has-feedback">
<label class="control-label">Username</label>
<input type="text" class="form-control" placeholder="">
<i class="fa fa-user form-control-feedback"></i>
</div>
<div class="form-group has-feedback">
<label class="control-label">Password</label>
<input type="password" class="form-control" placeholder="">
<i class="fa fa-lock form-control-feedback"></i>
</div>
<button type="submit" class="btn btn-gray btn-sm">Log In</button>
<span class="pl-5 pr-5">or</span>
<button type="submit" class="btn btn-default btn-sm">Sign Up</button>
<ul>
<a href="#">Forgot your password?</a>
</ul>
<span class="text-center">Login with</span>
<ul class="social-links circle small colored clearfix">
<li class="facebook"><a target="_blank" href="http://www.facebook.com"><i class="fa fa-facebook"></i></a></li>
<li class="twitter"><a target="_blank" href="http://www.twitter.com"><i class="fa fa-twitter"></i></a></li>
<li class="googleplus"><a target="_blank" href="http://plus.google.com"><i class="fa fa-google-plus"></i></a></li>
</ul>
</form>
</li>
</ul>
</div>
</div>
<!-- header top dropdowns end -->
</div>
<!-- header-top-second end -->
</div>
</div>
</div>
</div>
<!-- header-top end -->
<!-- header start -->
<!-- classes: -->
<!-- "fixed": enables fixed navigation mode (sticky menu) e.g. class="header fixed clearfix" -->
<!-- "dark": dark version of header e.g. class="header dark clearfix" -->
<!-- "full-width": mandatory class for the full-width menu layout -->
<!-- "centered": mandatory class for the centered logo layout -->
<!-- ================ -->
<header class="header fixed clearfix">
<div class="container">
<div class="row">
<div class="col-md-3">
<!-- header-left start -->
<!-- ================ -->
<div class="header-left clearfix">
<!-- logo -->
<div id="logo" class="logo">
<a href="index.html"><img id="logo_img" src="images/logo.png" width="100" alt="NotesAcademy"></a>
</div>
<!-- name-and-slogan
<div class="site-slogan">
Multipurpose HTML5 Template
</div>
-->
</div>
<!-- header-left end -->
</div>
<div class="col-md-9">
<!-- header-right start -->
<!-- ================ -->
<div class="header-right clearfix">
<!-- main-navigation start -->
<!-- classes: -->
<!-- "onclick": Makes the dropdowns open on click, this the default bootstrap behavior e.g. class="main-navigation onclick" -->
<!-- "animated": Enables animations on dropdowns opening e.g. class="main-navigation animated" -->
<!-- "with-dropdown-buttons": Mandatory class that adds extra space, to the main navigation, for the search and cart dropdowns -->
<!-- ================ -->
<div class="main-navigation animated with-dropdown-buttons">
<!-- navbar start -->
<!-- ================ -->
<nav class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<!-- Toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="navbar-collapse-1">
<!-- main-menu -->
<ul class="nav navbar-nav ">
<!-- mega-menu start -->
<li class="dropdown active mega-menu">
<a href="index.html" class="dropdown-toggle" data-toggle="dropdown">Home</a>
<ul class="dropdown-menu">
<li>
<div class="row">
<div class="col-md-12">
<h4 class="title"><i class="fa fa-laptop pr-10"></i> Demos</h4>
<div class="row">
<div class="col-sm-4">
<div class="divider"></div>
<ul class="menu">
<li class="active"><a href="index.html"><i class="icon-home pr-10"></i>Home Default</a></li>
<li ><a href="index-corporate-1.html"><i class="icon-suitcase pr-10"></i>Corporate 1</a></li>
<li ><a href="index-corporate-2.html"><i class="icon-suitcase pr-10"></i>Corporate 2</a></li>
<li ><a href="index-corporate-3.html"><i class="icon-suitcase pr-10"></i>Corporate 3</a></li>
<li ><a href="index-shop.html"><i class="icon-basket-1 pr-10"></i>Commerce 1</a></li>
<li ><a href="index-shop-2.html"><i class="icon-basket-1 pr-10"></i>Commerce 2</a></li>
</ul>
</div>
<div class="col-sm-4">
<div class="divider"></div>
<ul class="menu">
<li ><a href="index-portfolio.html"><i class="icon-briefcase pr-10"></i>Portfolio/Agency</a></li>
<li ><a href="index-medical.html"><i class="fa fa-ambulance pr-10"></i>Medical</a></li>
<li ><a href="index-restaurant.html"><i class="fa fa-cutlery pr-10"></i>Restaurant</a></li>
<li ><a href="index-wedding.html"><i class="icon-heart pr-10"></i>Wedding</a></li>
<li ><a href="index-landing.html"><i class="fa fa-star pr-10"></i>Landing Page</a></li>
<li ><a href="page-coming-soon.html"><i class="fa fa-clock-o pr-10"></i>Coming Soon</a></li>
</ul>
</div>
<div class="col-sm-4">
<div class="divider"></div>
<ul class="menu">
<li ><a href="index-one-page.html"><i class="icon-home pr-10"></i>One Page Version</a></li>
<li ><a href="index-construction.html"><i class="fa fa-building pr-10"></i>Construction <span class="badge">New</span></a></li>
<li ><a href="index-education.html"><i class="fa fa-graduation-cap pr-10"></i>Education <span class="badge">New</span></a></li>
<li ><a href="index-hotel.html"><i class="fa fa-bed pr-10"></i>Hotel <span class="badge">New</span></a></li>
<li ><a href="index-blog.html"><i class="fa fa-pencil pr-10"></i>Blog <span class="badge">New</span></a></li>
<li ><a href="index-beauty.html"><i class="fa fa-magic pr-10"></i>Beauty Center <span class="badge">New</span></a></li>
</ul>
</div>
</div>
</div>
</div>
</li>
</ul>
</li>
<!-- mega-menu end -->
<!-- mega-menu start -->
<li class="dropdown mega-menu">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Pages</a>
<ul class="dropdown-menu">
<li>
<div class="row">
<div class="col-lg-8 col-md-9">
<h4 class="title">Pages</h4>
<div class="row">
<div class="col-sm-4">
<div class="divider"></div>
<ul class="menu">
<li ><a href="page-about.html"><i class="fa fa-angle-right"></i>About Us 1</a></li>
<li ><a href="page-about-2.html"><i class="fa fa-angle-right"></i>About Us 2</a></li>
<li ><a href="page-about-3.html"><i class="fa fa-angle-right"></i>About Us 3</a></li>
<li ><a href="page-about-4.html"><i class="fa fa-angle-right"></i>About Us 4</a></li>
<li ><a href="page-about-me.html"><i class="fa fa-angle-right"></i>About Me</a></li>
<li ><a href="page-team.html"><i class="fa fa-angle-right"></i>Our Team - Options 1</a></li>
<li ><a href="page-team-2.html"><i class="fa fa-angle-right"></i>Our Team - Options 2</a></li>
<li ><a href="page-team-3.html"><i class="fa fa-angle-right"></i>Our Team - Options 3</a></li>
<li ><a href="page-coming-soon.html"><i class="fa fa-angle-right"></i>Coming Soon Page</a></li>
<li ><a href="page-faq.html"><i class="fa fa-angle-right"></i>FAQ page</a></li>
</ul>
</div>
<div class="col-sm-4">
<div class="divider"></div>
<ul class="menu">
<li ><a href="page-services.html"><i class="fa fa-angle-right"></i>Services 1</a></li>
<li ><a href="page-services-2.html"><i class="fa fa-angle-right"></i>Services 2</a></li>
<li ><a href="page-services-3.html"><i class="fa fa-angle-right"></i>Services 3</a></li>
<li ><a href="page-contact.html"><i class="fa fa-angle-right"></i>Contact 1</a></li>
<li ><a href="page-contact-2.html"><i class="fa fa-angle-right"></i>Contact 2</a></li>
<li ><a href="page-contact-3.html"><i class="fa fa-angle-right"></i>Contact 3</a></li>
<li ><a href="page-login.html"><i class="fa fa-angle-right"></i>Login 1</a></li>
<li ><a href="page-login-2.html"><i class="fa fa-angle-right"></i>Login 2 - Fullsreen</a></li>
<li ><a href="page-signup.html"><i class="fa fa-angle-right"></i>Sign Up 1</a></li>
<li ><a href="page-signup-2.html"><i class="fa fa-angle-right"></i>Sign Up 2 - Fullsreen</a></li>
</ul>
</div>
<div class="col-sm-4">
<div class="divider"></div>
<ul class="menu">
<li ><a href="page-404.html"><i class="fa fa-angle-right"></i>404 error</a></li>
<li ><a href="page-404-2.html"><i class="fa fa-angle-right"></i>404 error - Parallax</a></li>
<li ><a href="page-affix-sidebar.html"><i class="fa fa-angle-right"></i>Sidebar - Affix Menu</a></li>
<li ><a href="page-left-sidebar.html"><i class="fa fa-angle-right"></i>Left Sidebar</a></li>
<li ><a href="page-right-sidebar.html"><i class="fa fa-angle-right"></i>Right Sidebar</a></li>
<li ><a href="page-two-sidebars.html"><i class="fa fa-angle-right"></i>Two Sidebars</a></li>
<li ><a href="page-two-sidebars-left.html"><i class="fa fa-angle-right"></i>Two Sidebars Left</a></li>
<li ><a href="page-two-sidebars-right.html"><i class="fa fa-angle-right"></i>Two Sidebars Right</a></li>
<li ><a href="page-no-sidebars.html"><i class="fa fa-angle-right"></i>No Sidebars</a></li>
<li ><a href="page-sitemap.html"><i class="fa fa-angle-right"></i>Sitemap</a></li>
</ul>
</div>
</div>
</div>
<div class="col-lg-4 col-md-3 hidden-sm">
<h4 class="title">Premium HTML5 Template</h4>
<p class="mb-10">The Project is perfectly suitable for corporate, business and company webpages.</p>
<img src="images/section-image-3.png" alt="The Project">
</div>
</div>
</li>
</ul>
</li>
<!-- mega-menu end -->
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Features</a>
<ul class="dropdown-menu">
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Headers</a>
<ul class="dropdown-menu">
<li ><a href="features-headers-default.html">Default/Semi-Transparent</a></li>
<li ><a href="features-headers-default-dark.html">Dark/Semi-Transparent</a></li>
<li ><a href="features-headers-classic.html">Classic Light</a></li>
<li ><a href="features-headers-classic-dark.html">Classic Dark</a></li>
<li ><a href="features-headers-colored.html">Colored/Light</a></li>
<li ><a href="features-headers-colored-dark.html">Colored/Dark</a></li>
<li ><a href="features-headers-full-width.html">Full Width</a></li>
<li ><a href="features-headers-offcanvas-left.html">Offcanvas Left Side</a></li>
<li ><a href="features-headers-offcanvas-right.html">Offcanvas Right Side</a></li>
<li ><a href="features-headers-logo-centered.html">Logo Centered</a></li>
<li ><a href="features-headers-slider-top.html">Slider Top</a></li>
<li ><a href="features-headers-simple.html">Simple Static</a></li>
</ul>
</li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Menus</a>
<ul class="dropdown-menu">
<li ><a href="features-headers-default.html">Default/On Hover Menu</a></li>
<li ><a href="features-menus-onhover-no-animations.html">On Hover Menu - No Animations</a></li>
<li ><a href="features-menus-onclick.html">On Click Menu - With Animations</a></li>
<li ><a href="features-menus-onclick-no-animations.html">On Click Menu - No Animations</a></li>
</ul>
</li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Footers <span class="badge">New</span></a>
<ul class="dropdown-menu">
<li ><a href="features-footers-default.html#footer">Footer - Default</a></li>
<li ><a href="features-footers-contact-form.html#footer">Footer - Contact Form</a></li>
<li ><a href="features-footers-google-maps.html#footer">Footer - Google Maps</a></li>
<li ><a href="features-footers-subscribe.html#footer">Footer - Subscribe Form</a></li>
<li ><a href="features-footers-minimal.html#footer">Footer - Minimal</a></li>
<li ><a href="features-footers-links.html#footer">Footer - Links <span class="badge">New</span></a></li>
</ul>
</li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Main Sliders</a>
<ul class="dropdown-menu">
<li ><a href="features-sliders-fullscreen.html">Full Screen</a></li>
<li ><a href="features-sliders-fullwidth.html">Full Width</a></li>
<li ><a href="features-sliders-fullwidth-big-height.html">Full Width - Big Height</a></li>
<li ><a href="features-sliders-boxedwidth-light.html">Boxed Width - Light Bg</a></li>
<li ><a href="features-sliders-boxedwidth-dark.html">Boxed Width - Dark Bg</a></li>
<li ><a href="features-sliders-boxedwidth-default.html">Boxed Width - Default Bg</a></li>
<li ><a href="features-sliders-video-background.html">Video Background</a></li>
<li ><a href="features-sliders-text-rotator.html">Text Rotator</a></li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Email Templates <span class="badge">New</span></a>
<ul class="dropdown-menu">
<li><a target="_blank" href="email_templates/email_template_blue.html">Blue</a></li>
<li><a target="_blank" href="email_templates/email_template_brown.html">Brown</a></li>
<li><a target="_blank" href="email_templates/email_template_cool_green.html">Cool Green</a></li>
<li><a target="_blank" href="email_templates/email_template_dark_cyan.html">Dark Cyan</a></li>
<li><a target="_blank" href="email_templates/email_template_dark_red.html">Dark Red</a></li>
<li><a target="_blank" href="email_templates/email_template_gold.html">Gold</a></li>
<li><a target="_blank" href="email_templates/email_template_gray.html">Gray</a></li>
<li><a target="_blank" href="email_templates/email_template_green.html">Green</a></li>
<li><a target="_blank" href="email_templates/email_template_light_blue.html">Light Blue</a></li>
<li><a target="_blank" href="email_templates/email_template_orange.html">Orange</a></li>
<li><a target="_blank" href="email_templates/email_template_pink.html">Pink</a></li>
<li><a target="_blank" href="email_templates/email_template_purple.html">Purple</a></li>
<li><a target="_blank" href="email_templates/email_template_red.html">Red</a></li>
<li><a target="_blank" href="email_templates/email_template_vivid_red.html">Vivid Red</a></li>
</ul>
</li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Pricing Tables</a>
<ul class="dropdown-menu">
<li ><a href="features-pricing-tables-1.html">Pricing Tables 1</a></li>
<li ><a href="features-pricing-tables-2.html">Pricing Tables 2</a></li>
<li ><a href="features-pricing-tables-3.html">Pricing Tables 3</a></li>
</ul>
</li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Icons</a>
<ul class="dropdown-menu">
<li ><a href="features-icons-fontawesome.html">Font Awesome</a></li>
<li ><a href="features-icons-fontello.html">Fontello</a></li>
<li ><a href="features-icons-glyphicons.html">Glyphicons</a></li>
</ul>
</li>
<li ><a href="features-dark-page.html">Dark Page</a></li>
<li ><a href="features-typography.html">Typography</a></li>
<li ><a href="features-backgrounds.html">Backgrounds</a></li>
<li ><a href="features-grid.html">Grid</a></li>
</ul>
</li>
<!-- mega-menu start -->
<li class="dropdown mega-menu narrow">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Components</a>
<ul class="dropdown-menu">
<li>
<div class="row">
<div class="col-md-12">
<h4 class="title"><i class="fa fa-magic pr-10"></i> Components</h4>
<div class="row">
<div class="col-sm-6">
<div class="divider"></div>
<ul class="menu">
<li ><a href="components-social-icons.html"><i class="icon-share pr-10"></i>Social Icons</a></li>
<li ><a href="components-buttons.html"><i class="icon-flask pr-10"></i>Buttons</a></li>
<li ><a href="components-forms.html"><i class="icon-eq pr-10"></i>Forms</a></li>
<li ><a href="components-tabs-and-pills.html"><i class=" icon-dot-3 pr-10"></i>Tabs & Pills</a></li>
<li ><a href="components-accordions.html"><i class="icon-menu-outline pr-10"></i>Accordions</a></li>
<li ><a href="components-progress-bars.html"><i class="icon-chart-line pr-10"></i>Progress Bars</a></li>
<li ><a href="components-call-to-action.html"><i class="icon-chat pr-10"></i>Call to Action Blocks</a></li>
<li ><a href="components-alerts-and-callouts.html"><i class="icon-info-circled pr-10"></i>Alerts & Callouts</a></li>
<li ><a href="components-content-sliders.html"><i class="icon-star-filled pr-10"></i>Content Sliders</a></li>
<li ><a href="components-charts.html"><i class="icon-chart-pie pr-10"></i>Charts</a></li>
<li ><a href="components-page-loaders.html"><i class="fa fa-circle-o-notch fa-spin"></i>Page Loaders <span class="badge">New</span></a></li>
</ul>
</div>
<div class="col-sm-6">
<div class="divider"></div>
<ul class="menu">
<li ><a href="components-icon-boxes.html"><i class="icon-picture-outline pr-10"></i>Icon Boxes</a></li>
<li ><a href="components-image-boxes.html"><i class="icon-camera-1 pr-10"></i>Image Boxes</a></li>
<li ><a href="components-fullwidth-sections.html"><i class="icon-code-1 pr-10"></i>Full Width Sections</a></li>
<li ><a href="components-animations.html"><i class="icon-docs pr-10"></i>Animations</a></li>
<li ><a href="components-video-and-audio.html"><i class="icon-video pr-10"></i>Video & Audio</a></li>
<li ><a href="components-lightbox.html"><i class="icon-plus pr-10"></i>Lightbox</a></li>
<li ><a href="components-counters.html"><i class="icon-sort-numeric pr-10"></i>Counters</a></li>
<li ><a href="components-modals.html"><i class="icon-popup pr-10"></i>Modals</a></li>
<li ><a href="components-tables.html"><i class="icon-th pr-10"></i>Tables</a></li>
<li ><a href="components-text-rotators.html"><i class="icon-arrows-ccw pr-10"></i>Text Rotators</a></li>
</ul>
</div>
</div>
</div>
</div>
</li>
</ul>
</li>
<!-- mega-menu end -->
<li class="dropdown ">
<a href="portfolio-grid-2-3-col.html" class="dropdown-toggle" data-toggle="dropdown">Portfolio</a>
<ul class="dropdown-menu">
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Portfolio Grid 1</a>
<ul class="dropdown-menu">
<li ><a href="portfolio-grid-1-2-col.html">2 Column</a></li>
<li ><a href="portfolio-grid-1-3-col.html">3 Column</a></li>
<li ><a href="portfolio-grid-1-4-col.html">4 Column</a></li>
<li ><a href="portfolio-grid-1-sidebar.html">With Sidebar</a></li>
</ul>
</li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Portfolio Grid 2</a>
<ul class="dropdown-menu">
<li ><a href="portfolio-grid-2-2-col.html">2 Column</a></li>
<li ><a href="portfolio-grid-2-3-col.html">3 Column</a></li>
<li ><a href="portfolio-grid-2-4-col.html">4 Column</a></li>
<li ><a href="portfolio-grid-2-sidebar.html">With Sidebar</a></li>
</ul>
</li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Portfolio Grid 3 - Dark</a>
<ul class="dropdown-menu">
<li ><a href="portfolio-grid-3-2-col.html">2 Column</a></li>
<li ><a href="portfolio-grid-3-3-col.html">3 Column</a></li>
<li ><a href="portfolio-grid-3-4-col.html">4 Column</a></li>
<li ><a href="portfolio-grid-3-sidebar.html">With Sidebar</a></li>
</ul>
</li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Portfolio Fullwidth</a>
<ul class="dropdown-menu">
<li ><a href="portfolio-fullwidth-2-col.html">2 Column</a></li>
<li ><a href="portfolio-fullwidth-3-col.html">3 Column</a></li>
<li ><a href="portfolio-fullwidth-4-col.html">4 Column</a></li>
</ul>
</li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Portfolio List</a>
<ul class="dropdown-menu">
<li ><a href="portfolio-list-1.html">List - Large Images</a></li>
<li ><a href="portfolio-list-2.html">List - Small Images</a></li>
<li ><a href="portfolio-list-sidebar.html">With Sidebar</a></li>
</ul>
</li>
<li ><a href="portfolio-item.html">Single Item 1</a></li>
<li ><a href="portfolio-item-2.html">Single Item 2</a></li>
<li ><a href="portfolio-item-3.html">Single Item 3</a></li>
</ul>
</li>
<li class="dropdown ">
<a href="index-shop.html" class="dropdown-toggle" data-toggle="dropdown">Shop</a>
<ul class="dropdown-menu">
<li ><a href="index-shop.html">Shop Home 1</a></li>
<li ><a href="index-shop-2.html">Shop Home 2</a></li>
<li ><a href="shop-listing-4col.html">Grid - 4 Columns</a></li>
<li ><a href="shop-listing-3col.html">Grid - 3 Columns</a></li>
<li ><a href="shop-listing-2col.html">Grid - 2 Columns</a></li>
<li ><a href="shop-listing-sidebar.html">Grid - With Sidebar</a></li>
<li ><a href="shop-listing-list.html">List</a></li>
<li ><a href="shop-product.html">Product</a></li>
<li ><a href="shop-cart.html">Shopping Cart</a></li>
<li ><a href="shop-checkout.html">Checkout Page - Step 1</a></li>
<li ><a href="shop-checkout-payment.html">Checkout Page - Step 2</a></li>
<li ><a href="shop-checkout-review.html">Checkout Page - Step 3</a></li>
<li ><a href="shop-invoice.html">Invoice</a></li>
</ul>
</li>
<li class="dropdown ">
<a href="blog-large-image-right-sidebar.html" class="dropdown-toggle" data-toggle="dropdown">Blog</a>
<ul class="dropdown-menu">
<li ><a href="index-blog.html">Blog Home <span class="badge">New</span></a></li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Large Image</a>
<ul class="dropdown-menu to-left">
<li ><a href="blog-large-image-right-sidebar.html">Right Sidebar</a></li>
<li ><a href="blog-large-image-left-sidebar.html">Left Sidebar</a></li>
<li ><a href="blog-large-image-no-sidebar.html">Without Sidebar</a></li>
</ul>
</li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Medium Image</a>
<ul class="dropdown-menu to-left">
<li ><a href="blog-medium-image-right-sidebar.html">Right Sidebar</a></li>
<li ><a href="blog-medium-image-left-sidebar.html">Left Sidebar</a></li>
<li ><a href="blog-medium-image-no-sidebar.html">Without Sidebar</a></li>
</ul>
</li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Masonry</a>
<ul class="dropdown-menu to-left">
<li ><a href="blog-masonry-right-sidebar.html">Right Sidebar</a></li>
<li ><a href="blog-masonry-left-sidebar.html">Left Sidebar</a></li>
<li ><a href="blog-masonry-no-sidebar.html">Without Sidebar</a></li>
</ul>
</li>
<li ><a href="blog-timeline.html">Timeline</a></li>
<li ><a href="blog-post.html">Blog Post</a></li>
</ul>
</li>
</ul>
<!-- main-menu end -->
<!-- header dropdown buttons -->
<div class="header-dropdown-buttons hidden-xs ">
<div class="btn-group dropdown">
<button type="button" class="btn dropdown-toggle" data-toggle="dropdown"><i class="icon-search"></i></button>
<ul class="dropdown-menu dropdown-menu-right dropdown-animation">
<li>
<form role="search" class="search-box margin-clear">
<div class="form-group has-feedback">
<input type="text" class="form-control" placeholder="Search">
<i class="icon-search form-control-feedback"></i>
</div>
</form>
</li>
</ul>
</div>
<div class="btn-group dropdown">
<button type="button" class="btn dropdown-toggle" data-toggle="dropdown"><i class="icon-basket-1"></i><span class="cart-count default-bg">8</span></button>
<ul class="dropdown-menu dropdown-menu-right dropdown-animation cart">
<li>
<table class="table table-hover">
<thead>
<tr>
<th class="quantity">QTY</th>
<th class="product">Product</th>
<th class="amount">Subtotal</th>
</tr>
</thead>
<tbody>
<tr>
<td class="quantity">2 x</td>
<td class="product"><a href="shop-product.html">Android 4.4 Smartphone</a><span class="small">4.7" Dual Core 1GB</span></td>
<td class="amount">$199.00</td>
</tr>
<tr>
<td class="quantity">3 x</td>
<td class="product"><a href="shop-product.html">Android 4.2 Tablet</a><span class="small">7.3" Quad Core 2GB</span></td>
<td class="amount">$299.00</td>
</tr>
<tr>
<td class="quantity">3 x</td>
<td class="product"><a href="shop-product.html">Desktop PC</a><span class="small">Quad Core 3.2MHz, 8GB RAM, 1TB Hard Disk</span></td>
<td class="amount">$1499.00</td>
</tr>
<tr>
<td class="total-quantity" colspan="2">Total 8 Items</td>
<td class="total-amount">$1997.00</td>
</tr>
</tbody>
</table>
<div class="panel-body text-right">
<a href="shop-cart.html" class="btn btn-group btn-gray btn-sm">View Cart</a>
<a href="shop-checkout.html" class="btn btn-group btn-gray btn-sm">Checkout</a>
</div>
</li>
</ul>
</div>
</div>
<!-- header dropdown buttons end-->
</div>
</div>
</nav>
<!-- navbar end -->
</div>
<!-- main-navigation end -->
</div>
<!-- header-right end -->
</div>
</div>
</div>
</header>
<!-- header end -->
</div>
<!-- header-container end -->
<div id="page-start"></div>
<!-- section start -->
<!-- ================ -->
<section class="light-gray-bg pv-30 clearfix">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<?php
$loggedin = false;
if ($loggedin) { //If Logged in
?>
<div class='text-center'><a href="#" class="btn btn-default btn-circle-sm"><i class="fa fa-user" style='font-size: 25px; padding-top: 5px;'></i></a>
Contributing as <strong>sijie123</strong></div>
<form role="form">
<div class="form-group">
<label for="title">Title</label>
<input type="text" class="form-control" id="title" name='title' placeholder="Title of Notes">
</div>
<div class="form-group">
Subject (Can select multiple)
<select multiple="" class="form-control">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
</select>
</div>
<div class="form-group">
Level
<select class="form-control">
<option>Sec 1</option>
<option>Sec 2</option>
<option>Sec 3</option>
<option>Sec 4</option>
<option>O Levels</option>
<option>JC 1</option>
<option>JC 2</option>
<option>A Levels</option>
</select>
</div>
<div class="form-group">
<label for="pass">Password</label>
<input type="password" class="form-control" id="pass" placeholder="Password (Optional)">
</div>
<div class="form-group">
<label for="exampleInputFile">File input</label>
<input type="file" id="exampleInputFile">
<!-- <p class="help-block">Example block-level help text here.</p>
</div>
<div class="checkbox">
<label>
<input type="checkbox"> Check me out
</label>-->
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
<?php
}
else {
?>
<div class='text-center'><a href="login.php?f=contribute.php" class="btn btn-default btn-circle"><i class="fa fa-user " style='font-size: 100px; padding-top: 80px; padding-bottom: 100px'></i></a><br>
<h2>Please Login to <strong>Contribute</strong></h2>
</div>
<?php
}
?>
<h2 class="text-center">Core <strong>Features</strong></h2>
<div class="separator"></div>
<p class="large text-center">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Numquam voluptas facere vero ex tempora saepe perspiciatis ducimus sequi animi.</p>
</div>
<div class="col-md-4 ">
<!-- pv-x means padding vertical (top and bottom), ph-x means padding horizontal (left and right) by x pixels) -->
<div class="pv-30 ph-20 feature-box bordered shadow text-center object-non-visible" data-animation-effect="fadeInDownSmall" data-effect-delay="100">
<span class="icon default-bg circle"><i class="fa fa-diamond"></i></span>
<h3>Easy Sharing Of Notes</h3>
<div class="separator clearfix"></div>
<p>Voluptatem ad provident non repudiandae beatae cupiditate amet reiciendis lorem ipsum dolor sit amet, consectetur.</p>
<a href="page-services.html">Read More <i class="pl-5 fa fa-angle-double-right"></i></a>
</div>
</div>
<div class="col-md-4 ">
<div class="pv-30 ph-20 feature-box bordered shadow text-center object-non-visible" data-animation-effect="fadeInDownSmall" data-effect-delay="150">
<span class="icon default-bg circle"><i class="fa fa-connectdevelop"></i></span>
<h3>Large Community</h3>
<div class="separator clearfix"></div>
<p>Iure sequi unde hic. Sapiente quaerat sequi inventore veritatis cumque lorem ipsum dolor sit amet, consectetur.</p>
<a href="page-services.html">Read More <i class="pl-5 fa fa-angle-double-right"></i></a>
</div>
</div>
<div class="col-md-4 ">
<div class="pv-30 ph-20 feature-box bordered shadow text-center object-non-visible" data-animation-effect="fadeInDownSmall" data-effect-delay="200">
<span class="icon default-bg circle"><i class="fa icon-snow"></i></span>
<h3>Huge Database</h3>
<div class="separator clearfix"></div>
<p>Inventore dolores aut laboriosam cum consequuntur delectus sequi lorem ipsum dolor sit amet, consectetur.</p>
<a href="page-services.html">Read More <i class="pl-5 fa fa-angle-double-right"></i></a>
</div>
</div>
</div>
</div>
</section>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<section class="section default-bg clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="call-to-action text-center">
<div class="row">
<div class="col-sm-8">
<h1 class="title">Don't Miss Out Our Offers</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rem quasi explicabo consequatur consectetur, a atque voluptate officiis eligendi nostrum.</p>
</div>
<div class="col-sm-4">
<br>
<p><a href="#" class="btn btn-lg btn-gray-transparent btn-animated">Join Now<i class="fa fa-arrow-right pl-20"></i></a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section end -->
<!-- section -->
<!-- ================ -->
<section class="pv-30">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h2 class="text-center">Why <strong>Choose</strong> Us</h2>
<div class="separator"></div>
<p class="large text-center">Atque ducimus velit, earum quidem, iusto dolorem. Ex ipsam totam quas blanditiis, pariatur maxime ipsa iste, doloremque neque doloribus, error. Corrupti, tenetur.</p>
<br>
</div>
</div>
</div>
<div class="owl-carousel content-slider-with-large-controls">
<div class="container">
<div class="row">
<div class="col-md-6">
<img src="images/section-image-1.png" alt="">
</div>
<div class="col-md-6">
<p class="space-top">Lorem ipsum dolor sit amet, consectetur adipisicing elit. At provident modi nobis dolores ratione, maiores beatae vel iste illo incidunt officia sed id cupiditate quasi excepturi</p>
<div class="media">
<div class="media-left pr-20">
<a href="#">
<span class="icon circle small default-bg"><i class="icon-eye"></i> </span>
</a>
</div>
<div class="media-body">
<h4 class="media-heading">Extremely Flexible</h4>
Cras sit amet nibh libero, in gravida nulla. Sollicitudin.
</div>
</div>
<div class="media">
<div class="media-left pr-20">
<a href="#">
<span class="icon circle small default-bg"><i class="icon-trophy"></i> </span>
</a>
</div>
<div class="media-body">
<h4 class="media-heading">Packed Full Of Features</h4>
Cras sit amet nibh libero. Nulla vel metus scelerisque.
</div>
</div>
<div class="media">
<div class="media-left pr-20">
<a href="#">
<span class="icon circle small default-bg"><i class="icon-lifebuoy"></i> </span>
</a>
</div>
<div class="media-body">
<h4 class="media-heading">24/7 Support</h4>
Cras sit amet nibh libero. Nulla vel metus scelerisque.
</div>
</div>
<p><a href="page-services.html" class="btn btn-default-transparent btn-animated">Learn More <i class="fa fa-arrow-right pl-10"></i></a></p>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6 text-right">
<p class="space-top">Lorem ipsum dolor sit amet, consectetur adipisicing elit. At provident modi nobis dolores ratione, maiores beatae vel iste illo incidunt officia sed id cupiditate quasi excepturi</p>
<div class="media">
<div class="media-body">
<h4 class="media-heading">Extremely Flexible</h4>
Cras sit amet nibh libero, in gravida nulla. Sollicitudin.
</div>
<div class="media-right pl-20">
<a href="#">
<span class="icon circle small default-bg"><i class="icon-eye"></i> </span>
</a>
</div>
</div>
<div class="media">
<div class="media-body">
<h4 class="media-heading">Packed Full Of Features</h4>
Cras sit amet nibh libero. Nulla vel metus scelerisque.
</div>
<div class="media-right pl-20">
<a href="#">
<span class="icon circle small default-bg"><i class="icon-trophy"></i> </span>
</a>
</div>
</div>
<div class="media">
<div class="media-body">
<h4 class="media-heading">24/7 Support</h4>
Cras sit amet nibh libero. Nulla vel metus scelerisque.
</div>
<div class="media-right pl-20">
<a href="#">
<span class="icon circle small default-bg"><i class="icon-lifebuoy"></i> </span>
</a>
</div>
</div>
<p><a href="page-services.html" class="btn btn-default-transparent btn-animated">Learn More <i class="fa fa-arrow-right pl-10"></i></a></p>
</div>
<div class="col-md-6">
<img src="images/section-image-2.png" alt="">
</div>
</div>
</div>
</div>
</section>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<section class="light-gray-bg pv-20">
</section>
<!-- section end -->
<!-- section -->
<!-- ================ -->
<section class="pv-30">
<div class="container">
<div class="row">
<div class="col-md-6">
<h2>What We <strong>Offer</strong></h2>
<div class="separator-2"></div>
<p>Lorem ipsum dolor sit amet, lotrem <span class="text-default">some colored text</span>. Nulla explicabo <strong>attention to this</strong> blanditiis, ex cupiditate ipsam debitis rem.</p>
<ul class="list-icons">
<li class="object-non-visible" data-animation-effect="fadeInUpSmall" data-effect-delay="100"><i class="icon-check-1"></i> 18 Predifined Home Pages</li>
<li class="object-non-visible" data-animation-effect="fadeInUpSmall" data-effect-delay="150"><i class="icon-check-1"></i> 12 Header Options</li>
<li class="object-non-visible" data-animation-effect="fadeInUpSmall" data-effect-delay="200"><i class="icon-check-1"></i> 6 Footer Options</li>
<li class="object-non-visible" data-animation-effect="fadeInUpSmall" data-effect-delay="250"><i class="icon-check-1"></i> 170 HTML files</li>
</ul>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. <strong>Some bold text</strong>, unde voluptatum quidem explicabo et eius aut nisi dolore ut.</p>
<a href="page-about.html" class="btn btn-default btn-hvr hvr-shutter-out-horizontal btn-lg"><i class="icon-users-1 pr-10"></i>Learn More</a>
</div>
<div class="col-md-6">
<br>
<div role="tabpanel">
<!-- Nav tabs -->
<ul class="nav nav-tabs style-1" role="tablist">
<li role="presentation" class="active"><a href="#home" aria-controls="home" role="tab" data-toggle="tab"><i class="icon-heart pr-10"></i>We Love</a></li>
<li role="presentation"><a href="#profile" aria-controls="profile" role="tab" data-toggle="tab">What</a></li>
<li role="presentation"><a href="#messages" aria-controls="messages" role="tab" data-toggle="tab">We Do</a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div role="tabpanel" class="tab-pane fade in active" id="home">
<div class="overlay-container overlay-visible">
<img src="images/section-image-3.jpg" alt="">
<a href="#" class="overlay-link"><i class="fa fa-link"></i></a>
<div class="overlay-bottom hidden-xs">
<div class="text">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt nobis sunt, quae alias impedit ea molestias recusandae.
</div>
</div>
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="profile">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="//player.vimeo.com/video/29198414?byline=0&portrait=0"></iframe>
<p><a href="http://vimeo.com/29198414">Introducing Vimeo Music Store</a> from <a href="http://vimeo.com/staff">Vimeo Staff</a> on <a href="https://vimeo.com">Vimeo</a>.</p>
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="messages">
<h3>Lorem ipsum dolor sit amet</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laudantium voluptas excepturi hic eveniet deleniti, voluptate fugit quod sapiente ut nulla voluptates neque a rerum! Sed dolores enim veniam, dolor minus.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Qui quos quidem amet sapiente praesentium unde, vel corrupti, vero dicta velit fuga ut at accusantium expedita inventore fugit perferendis non reprehenderit.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sapiente tempore ipsam tenetur molestias eligendi provident! Itaque sapiente neque esse expedita voluptatibus qui officia, fuga a tempora! Alias voluptate pariatur quo.</p>
</div>
</div>
</div>
</div>