"Services content boxes"
Bootstrap 3.1.0 Snippet by palimadra

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
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
<div class="flex-container-services">
<h2 class="separation-title"> Website Development </h2>
<div class="service-description">Creating a website that speaks to your targeted audience is the best way to convert visits into sales. </div>
<!-- start of Web dev container -->
<div class="flex-item-services">
<figure class=services-icon>
<i style="color: #f3701e" class="fa fa-paint-brush" aria-hidden="true"></i>
</figure>
<div class="title-services"> Design and Development </div>
<div class="content-services"> Create a beautiful, functional site that speaks to your clients. From scratch. </div>
</div>
<div class="flex-item-services">
<figure class=services-icon>
<i style="color: #f3701e" class="fa fa-shopping-cart" aria-hidden="true"></i>
</figure>
<div class="title-services"> E-Commerce </div>
<div class="content-services"> Increase revenue by bringing your business online. Offer and sell your products directly on your site. </div>
</div>
<div class="flex-item-services">
<figure class=services-icon>
<i style="color: #f3701e" class="fa fa-line-chart" aria-hidden="true"></i>
</figure>
<div class="title-services"> Rank Higher in Search Results </div>
<div class="content-services"> With the best SEO practices, your site will show at the top of search engines results. </div>
</div>
<!-- end of Web dev container -->
<h2 class="separation-title"> Marketing </h2>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
.flex-container-services {
padding: 0;
margin: auto;
list-style: none;
max-width: 1130px;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row wrap;
justify-content: center;
}
.flex-item-services {
/*background: #f1f1f1;*/
padding: 0px;
width: 340px;
height: 100px;
margin: 10px 16px;
color: white;
font-weight: bold;
}
.title-services {
word-break: normal;
font-size: 18px;
padding: 0 10px 5px;
color: #333;
text-align: left;
}
.content-services {
font-size: 16px;
padding: 0 10px;
color: #666;
text-align: left;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: