-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsections.html
More file actions
3090 lines (2627 loc) · 100 KB
/
sections.html
File metadata and controls
3090 lines (2627 loc) · 100 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 lang="en">
<head>
<meta charset="utf-8" />
<link rel="apple-touch-icon" sizes="76x76" href="img/apple-icon.png">
<link rel="icon" type="image/png" href="img/favicon.png">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Sections - Material Kit PRO by Creative Tim</title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<!-- Fonts and icons -->
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Roboto+Slab:400,700|Material+Icons" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- CSS Files -->
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="css/material-kit.css" rel="stylesheet"/>
<!-- CSS Just for demo purpose, don't include it in your project -->
<link href="assets-for-demo/vertical-nav.css" rel="stylesheet" />
</head>
<body class="section-white">
<nav class="navbar navbar-primary navbar-fixed-top" id="sectionsNav">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navigation-example">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="presentation.html">Material Kit PRO</a>
</div>
<div class="collapse navbar-collapse" id="navigation-example">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="index.html">
<i class="material-icons">apps</i> Components
</a>
</li>
<li class="dropdown" id="headerNavigationItems">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="material-icons">view_day</i> Sections
<b class="caret"></b>
</a>
<ul class="dropdown-menu dropdown-with-icons">
<li>
<a href="#headers">
<i class="material-icons">dns</i> Headers
</a>
</li>
<li>
<a href="#features">
<i class="material-icons">build</i> Features
</a>
</li>
<li>
<a href="#blogs">
<i class="material-icons">list</i> Blogs
</a>
</li>
<li>
<a href="#teams">
<i class="material-icons">people</i> Teams
</a>
</li>
<li>
<a href="#projects">
<i class="material-icons">assignment</i> Projects
</a>
</li>
<li>
<a href="#pricing">
<i class="material-icons">monetization_on</i> Pricing
</a>
</li>
<li>
<a href="#testimonials">
<i class="material-icons">chat</i> Testimonials
</a>
</li>
<li>
<a href="#contactus">
<i class="material-icons">call</i> Contacts
</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="material-icons">view_carousel</i> Examples
<b class="caret"></b>
</a>
<ul class="dropdown-menu dropdown-with-icons">
<li>
<a href="examples/about-us.html">
<i class="material-icons">account_balance</i> About Us
</a>
</li>
<li>
<a href="examples/blog-post.html">
<i class="material-icons">art_track</i> Blog Post
</a>
</li>
<li>
<a href="examples/blog-posts.html">
<i class="material-icons">view_quilt</i> Blog Posts
</a>
</li>
<li>
<a href="examples/contact-us.html">
<i class="material-icons">location_on</i> Contact Us
</a>
</li>
<li>
<a href="examples/landing-page.html">
<i class="material-icons">view_day</i> Landing Page
</a>
</li>
<li>
<a href="examples/login-page.html">
<i class="material-icons">fingerprint</i> Login Page
</a>
</li>
<li>
<a href="examples/pricing.html">
<i class="material-icons">attach_money</i> Pricing Page
</a>
</li>
<li>
<a href="examples/product-page.html">
<i class="material-icons">beach_access</i> Product Page
</a>
</li>
<li>
<a href="examples/profile-page.html">
<i class="material-icons">account_circle</i> Profile Page
</a>
</li>
<li>
<a href="examples/signup-page.html">
<i class="material-icons">person_add</i> Signup Page
</a>
</li>
</ul>
</li>
<li>
<a href="http://www.creative-tim.com/buy/material-kit-pro?ref=presentation" target="_blank" class="btn btn-white btn-round">
<i class="material-icons">shopping_cart</i> Buy Now
</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="section-space"></div>
<div class="cd-section" id="headers">
<!-- ********* HEADER 1 ********* -->
<div class="header-1">
<nav class="navbar navbar-transparent navbar-absolute">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navigation-example">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="http://www.creative-tim.com">Creative Tim</a>
</div>
<div class="collapse navbar-collapse" id="navigation-example">
<ul class="nav navbar-nav navbar-center">
<li>
<a href="#pablo">
Home
</a>
</li>
<li>
<a href="#pablo">
About Us
</a>
</li>
<li>
<a href="#pablo">
Products
</a>
</li>
<li>
<a href="#pablo">
Contact Us
</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="https://twitter.com/CreativeTim">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/CreativeTim">
<i class="fa fa-facebook-square"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/CreativeTimOfficial">
<i class="fa fa-instagram"></i>
</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="page-header header-filter" style="background-image: url('img/bg12.jpg');">
<div class="container">
<div class="row">
<div class="col-md-6">
<h1 class="title">Tesla Model 3.</h1>
<h4>There's no doubt that Tesla is delighted with the interest, but the data also raises a few questions. How long will it take for Tesla to fulfill all those extra orders?</h4>
<br />
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" target="_blank" class="btn btn-danger btn-lg">
<i class="fa fa-ticket"></i> Order Now
</a>
</div>
<div class="col-md-5 col-md-offset-1">
<div class="iframe-container">
<iframe src="https://www.youtube.com/embed/IN6QnLpVEPI?modestbranding=1&autohide=1&showinfo=0" frameborder="0" allowfullscreen height="250"></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ********* END HEADER 1 ********* -->
<!-- ********* HEADER 2 ********* -->
<div class="header-2">
<nav class="navbar navbar-transparent navbar-absolute">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navigation-example">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="http://www.creative-tim.com">Creative Tim</a>
</div>
<div class="collapse navbar-collapse" id="navigation-example">
<ul class="nav navbar-nav navbar-center">
<li>
<a href="#pablo">
Home
</a>
</li>
<li>
<a href="#pablo">
About Us
</a>
</li>
<li>
<a href="#pablo">
Products
</a>
</li>
<li>
<a href="#pablo">
Contact Us
</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="https://twitter.com/CreativeTim">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/CreativeTim">
<i class="fa fa-facebook-square"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/CreativeTimOfficial">
<i class="fa fa-instagram"></i>
</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="page-header header-filter" style="background-image: url('img/examples/office2.jpg');">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center">
<h1 class="title"> You should work with us!</h1>
<h4>Now you have no excuses, it's time to surprise your clients, your competitors, and why not, the world. You probably won't have a better chance to show off all your potential if it's not by designing a website for your own agency or web studio.</h4>
</div>
<div class="col-md-10 col-md-offset-1">
<div class="card card-raised card-form-horizontal">
<div class="content">
<form method="" action="">
<div class="row">
<div class="col-md-3">
<div class="form-group">
<input type="text" value="" placeholder="Company Name" class="form-control" />
</div>
</div>
<div class="col-md-3">
<div class="form-group">
<input type="email" value="" placeholder="Company Email" class="form-control" />
</div>
</div>
<div class="col-md-3">
<div class="form-group">
<input type="password" value="" placeholder="Company Password" class="form-control" />
</div>
</div>
<div class="col-md-3">
<button type="button" class="btn btn-primary btn-block">Sign up</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ********* END HEADER 2 ********* -->
<!-- ********* HEADER 3 ********* -->
<div class="header-3">
<nav class="navbar navbar-transparent navbar-absolute">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navigation-example">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="http://www.creative-tim.com">Creative Tim</a>
</div>
<div class="collapse navbar-collapse" id="navigation-example">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="#pablo">
Home
</a>
</li>
<li>
<a href="#pablo">
About Us
</a>
</li>
<li>
<a href="#pablo">
Products
</a>
</li>
<li>
<a href="#pablo">
Contact Us
</a>
</li>
</ul>
</div>
</div>
</nav>
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<div class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<div class="page-header header-filter" style="background-image: url('img/dg1.jpg');">
<div class="container">
<div class="row">
<div class="col-md-6 text-left">
<h1 class="title">Material Kit PRO</h1>
<h4>Dolce & Gabbana is a luxury Italian fashion house founded in 1985 in Legnano by Italian designers Domenico Dolce and Stefano Gabbana. The two met in Milan in 1980 and designed for the same fashion house.</h4>
<br />
<div class="buttons">
<a href="#pablo" class="btn btn-primary btn-lg">
Read More
</a>
<a href="#pablo" class="btn btn-just-icon btn-white btn-simple btn-lg">
<i class="fa fa-twitter"></i>
</a>
<a href="#pablo" class="btn btn-just-icon btn-white btn-simple btn-lg">
<i class="fa fa-facebook-square"></i>
</a>
<a href="#pablo" class="btn btn-just-icon btn-white btn-simple btn-lg">
<i class="fa fa-get-pocket"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="page-header header-filter" style="background-image: url('img/dg2.jpg');">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center">
<h1 class="title">Material Kit PRO</h1>
<h4>Dolce & Gabbana is a luxury Italian fashion house founded in 1985 in Legnano by Italian designers Domenico Dolce and Stefano Gabbana. The two met in Milan in 1980 and designed for the same fashion house.</h4>
<br />
<h6>Connect with us on:</h6>
<div class="buttons">
<a href="#pablo" class="btn btn-just-icon btn-white btn-simple btn-lg">
<i class="fa fa-twitter"></i>
</a>
<a href="#pablo" class="btn btn-just-icon btn-white btn-simple btn-lg">
<i class="fa fa-facebook-square"></i>
</a>
<a href="#pablo" class="btn btn-just-icon btn-white btn-simple btn-lg">
<i class="fa fa-google-plus"></i>
</a>
<a href="#pablo" class="btn btn-just-icon btn-white btn-simple btn-lg">
<i class="fa fa-instagram"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="page-header header-filter" style="background-image: url('img/dg3.jpg');">
<div class="container">
<div class="row">
<div class="col-md-7 col-md-offset-5 text-right">
<h1 class="title">New Collection 50% Off</h1>
<h4>There's no doubt that Tesla is delighted with the interest, but the data also raises a few questions. How long will it take for Tesla to fulfill all those extra orders?</h4>
<br />
<div class="buttons">
<a href="#pablo" class="btn btn-white btn-simple btn-lg">
<i class="material-icons">share</i> Share Offer
</a>
<a href="#pablo" class="btn btn-danger btn-lg">
<i class="material-icons">shopping_cart</i> Shop Now
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" data-slide="prev">
<i class="material-icons">keyboard_arrow_left</i>
</a>
<a class="right carousel-control" href="#carousel-example-generic" data-slide="next">
<i class="material-icons">keyboard_arrow_right</i>
</a>
</div>
</div>
</div>
<!-- ********* END HEADER 3 ********* -->
</div>
<div class="cd-section" id="features">
<div class="container">
<!-- ********* FEATURES 1 ********* -->
<div class="features-1">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h2 class="title">Why our product is the best</h2>
<h5 class="description">This is the paragraph where you can write more details about your product. Keep you user engaged by providing meaningful information. Remember that by this time, the user is curious, otherwise he wouldn't scroll to get here. Add a button if you want the user to see more.</h5>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="info">
<div class="icon icon-info">
<i class="material-icons">chat</i>
</div>
<h4 class="info-title">Free Chat</h4>
<p>Divide details about your product or agency work into parts. Write a few lines about each one. A paragraph describing a feature will be enough.</p>
</div>
</div>
<div class="col-md-4">
<div class="info">
<div class="icon icon-success">
<i class="material-icons">verified_user</i>
</div>
<h4 class="info-title">Verified Users</h4>
<p>Divide details about your product or agency work into parts. Write a few lines about each one. A paragraph describing a feature will be enough.</p>
</div>
</div>
<div class="col-md-4">
<div class="info">
<div class="icon icon-danger">
<i class="material-icons">fingerprint</i>
</div>
<h4 class="info-title">Fingerprint</h4>
<p>Divide details about your product or agency work into parts. Write a few lines about each one. A paragraph describing a feature will be enough.</p>
</div>
</div>
</div>
</div>
<!-- ********* END FEATURES 1 ********* -->
<!-- ********* FEATURES 2 ********* -->
<div class="features-2">
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center">
<h2 class="title">Why our product is the best</h2>
<h5 class="description">This is the paragraph where you can write more details about your product. Keep you user engaged by providing meaningful information.</h5>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="info info-horizontal">
<div class="icon icon-info">
<i class="material-icons">group_work</i>
</div>
<div class="description">
<h4 class="info-title">Collaborate</h4>
<p>The moment you use Material Kit, you know you’ve never felt anything like it. With a single use, this powerfull UI Kit lets you do more than ever before. </p>
<a href="#pablo">Find more...</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="info info-horizontal">
<div class="icon icon-danger">
<i class="material-icons">airplay</i>
</div>
<div class="description">
<h4 class="info-title">Airplay</h4>
<p>Divide details about your product or agency work into parts. Write a few lines about each one. A paragraph describing a feature will be enough.</p>
<a href="#pablo">Find more...</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="info info-horizontal">
<div class="icon icon-success">
<i class="material-icons">location_on</i>
</div>
<div class="description">
<h4 class="info-title">Location Integrated</h4>
<p>Divide details about your product or agency work into parts. Write a few lines about each one. A paragraph describing a feature will be enough.</p>
<a href="#pablo">Find more...</a>
</div>
</div>
</div>
</div>
</div>
<!-- ********* END FEATURES 2 ********* -->
<!-- ********* FEATURES 3 ********* -->
<div class="features-3">
<div class="row">
<div class="col-md-6">
<div class="phone-container">
<img src="img/sections/iphone.png" />
</div>
</div>
<div class="col-md-6">
<br /><br />
<!-- Some <br /> tags to push the text to align with the image, you can remove it if you have more text on the right side :-) -->
<h2 class="title">Your life will be much easier</h2>
<div class="info info-horizontal">
<div class="icon icon-primary">
<i class="material-icons">extension</i>
</div>
<div class="description">
<h4 class="info-title">Hundreds of Components</h4>
<p>The moment you use Material Kit, you know you’ve never felt anything like it. With a single use, this powerfull UI Kit lets you do more than ever before. </p>
</div>
</div>
<div class="info info-horizontal">
<div class="icon icon-primary">
<i class="material-icons">child_friendly</i>
</div>
<div class="description">
<h4 class="info-title">Easy to Use</h4>
<p>Divide details about your product or agency work into parts. Write a few lines about each one. A paragraph describing a feature will be enough.</p>
</div>
</div>
<div class="info info-horizontal">
<div class="icon icon-primary">
<i class="material-icons">watch_later</i>
</div>
<div class="description">
<h4 class="info-title">Fast Prototyping</h4>
<p>Divide details about your product or agency work into parts. Write a few lines about each one. A paragraph describing a feature will be enough.</p>
</div>
</div>
</div>
</div>
</div>
<!-- ********* END FEATURES 3 ********* -->
<!-- ********* FEATURES 4 ********* -->
<div class="features-4">
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center">
<h2 class="title">Your life will be much easier</h2>
<h5 class="description">This is the paragraph where you can write more details about your product. Keep you user engaged by providing meaningful information.</h5>
</div>
</div>
<div class="row">
<div class="col-md-3 col-md-offset-1">
<div class="info info-horizontal">
<div class="icon icon-info">
<i class="material-icons">code</i>
</div>
<div class="description">
<h4 class="info-title">For Developers</h4>
<p>The moment you use Material Kit, you know you’ve never felt anything like it. With a single use, this powerfull UI Kit lets you do more than ever before. </p>
</div>
</div>
<div class="info info-horizontal">
<div class="icon icon-danger">
<i class="material-icons">format_paint</i>
</div>
<div class="description">
<h4 class="info-title">For Designers</h4>
<p>Divide details about your product or agency work into parts. Write a few lines about each one. A paragraph describing a feature will be enough.</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="phone-container">
<img src="img/sections/iphone2.png" />
</div>
</div>
<div class="col-md-3">
<div class="info info-horizontal">
<div class="icon icon-primary">
<i class="material-icons">dashboard</i>
</div>
<div class="description">
<h4 class="info-title">Bootstrap Grid</h4>
<p>Divide details about your product or agency work into parts. Write a few lines about each one. A paragraph describing a feature will be enough.</p>
</div>
</div>
<div class="info info-horizontal">
<div class="icon icon-success">
<i class="material-icons">view_carousel</i>
</div>
<div class="description">
<h4 class="info-title">Example Pages Included</h4>
<p>Divide details about your product or agency work into parts. Write a few lines about each one. A paragraph describing a feature will be enough.</p>
</div>
</div>
</div>
</div>
</div>
<!-- ********* END FEATURES 4 ********* -->
</div>
<!-- ********* FEATURES 5 ********* -->
<div class="features-5" style="background-image: url('img/bg9.jpg')">
<div class="col-md-8 col-md-offset-2 text-center">
<h2 class="title">Your life will be much easier</h2>
</div>
<div class="container">
<div class="row">
<div class="col-sm-4">
<div class="info">
<div class="icon">
<i class="material-icons">code</i>
</div>
<h4 class="info-title">For Developers</h4>
<p>The moment you use Material Kit, you know you’ve never felt anything like it. With a single use, this powerfull UI Kit lets you do more than ever before. </p>
</div>
</div>
<div class="col-sm-4">
<div class="info">
<div class="icon">
<i class="material-icons">format_paint</i>
</div>
<h4 class="info-title">For Designers</h4>
<p>The moment you use Material Kit, you know you’ve never felt anything like it. With a single use, this powerfull UI Kit lets you do more than ever before. </p>
</div>
</div>
<div class="col-sm-4">
<div class="info">
<div class="icon">
<i class="material-icons">dashboard</i>
</div>
<h4 class="info-title">Bootstrap Grid</h4>
<p>The moment you use Material Kit, you know you’ve never felt anything like it. With a single use, this powerfull UI Kit lets you do more than ever before. </p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="info">
<div class="icon">
<i class="material-icons">view_carousel</i>
</div>
<h4 class="info-title">Example Pages Included</h4>
<p>The moment you use Material Kit, you know you’ve never felt anything like it. With a single use, this powerfull UI Kit lets you do more than ever before. </p>
</div>
</div>
<div class="col-sm-4">
<div class="info">
<div class="icon">
<i class="material-icons">access_time</i>
</div>
<h4 class="info-title">Save Time</h4>
<p>The moment you use Material Kit, you know you’ve never felt anything like it. With a single use, this powerfull UI Kit lets you do more than ever before. </p>
</div>
</div>
<div class="col-sm-4">
<div class="info">
<div class="icon">
<i class="material-icons">attach_money</i>
</div>
<h4 class="info-title">Save Money</h4>
<p>The moment you use Material Kit, you know you’ve never felt anything like it. With a single use, this powerfull UI Kit lets you do more than ever before. </p>
</div>
</div>
</div>
</div>
</div>
<!-- ********* END FEATURES 5 ********* -->
</div>
<div class="cd-section" id="blogs">
<!-- ********* BLOGS 1 ********* -->
<div class="blogs-1" id="blogs-1">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<h2 class="title">Latest Blogposts</h2>
<br />
<div class="card card-plain card-blog">
<div class="row">
<div class="col-md-5">
<div class="card-image">
<img class="img img-raised" src="img/examples/card-blog4.jpg" />
</div>
</div>
<div class="col-md-7">
<h6 class="category text-info">Enterprise</h6>
<h3 class="card-title">
<a href="#pablo">Autodesk looks to future of 3D printing with Project Escher</a>
</h3>
<p class="card-description">
Like so many organizations these days, Autodesk is a company in transition. It was until recently a traditional boxed software company selling licenses. Today, it’s moving to a subscription model. Yet its own business model disruption is only part of the story — and… <a href="#pablo"> Read More </a>
</p>
<p class="author">
by <a href="#pablo"><b>Mike Butcher</b></a>, 2 days ago
</a>
</div>
</div>
</div>
<div class="card card-plain card-blog">
<div class="row">
<div class="col-md-7">
<h6 class="category text-danger">
<i class="material-icons">trending_up</i> Trending
</h6>
<h3 class="card-title">
<a href="#pablo">6 insights into the French Fashion landscape</a>
</h3>
<p class="card-description">
Like so many organizations these days, Autodesk is a company in transition. It was until recently a traditional boxed software company selling licenses. Today, it’s moving to a subscription model. Yet its own business model disruption is only part of the story — and… <a href="#pablo"> Read More </a>
</p>
<p class="author">
by <a href="#pablo"><b>Mike Butcher</b></a>, 2 days ago
</a>
</div>
<div class="col-md-5">
<div class="card-image">
<img class="img img-raised" src="img/office2.jpg" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ********* END BLOGS 1 ********* -->
<!-- ********* BLOGS 2 ********* -->
<div class="blogs-2" id="blogs-2">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<h2 class="title">Latest Blogposts 2</h2>
<br />
<div class="row">
<div class="col-md-4">
<div class="card card-plain card-blog">
<div class="card-image">
<a href="#pablo">
<img class="img img-raised" src="img/examples/card-blog4.jpg" />
</a>
</div>
<div class="content">
<h6 class="category text-info">Enterprise</h6>
<h4 class="card-title">
<a href="#pablo">Autodesk looks to future of 3D printing with Project Escher</a>
</h4>
<p class="card-description">
Like so many organizations these days, Autodesk is a company in transition. It was until recently a traditional boxed software company selling licenses.<a href="#pablo"> Read More </a>
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card card-plain card-blog">
<div class="card-image">
<a href="#pablo">
<img class="img img-raised" src="img/examples/blog5.jpg" />
</a>
</div>
<div class="content">
<h6 class="category text-success">
Startups
</h6>
<h4 class="card-title">
<a href="#pablo">Lyft launching cross-platform service this week</a>
</h4>
<p class="card-description">
Like so many organizations these days, Autodesk is a company in transition. It was until recently a traditional boxed software company selling licenses.<a href="#pablo"> Read More </a>
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card card-plain card-blog">
<div class="card-image">
<a href="#pablo">
<img class="img img-raised" src="img/examples/blog7.jpg" />
</a>
</div>
<div class="content">
<h6 class="category text-danger">
<i class="material-icons">trending_up</i> Enterprise
</h6>
<h4 class="card-title">
<a href="#pablo">6 insights into the French Fashion landscape</a>
</h4>
<p class="card-description">
Like so many organizations these days, Autodesk is a company in transition. It was until recently a traditional boxed software company selling licenses.<a href="#pablo"> Read More </a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ********* END BLOGS 2 ********* -->
<!-- ********* BLOGS 3 ********* -->