"counter"
Bootstrap 4.1.1 Snippet by Nemra1

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<section id="counter" class="sec-padding">
<div class="container">
<div class="row">
<div class="col-md-3 ">
<div class="count"> <span class="fa fa-smile-o"></span>
<p class="number">126</p>
<h4>Happy Clients</h4> </div>
</div>
<div class="col-md-3 ">
<div class="count"> <span class="fa fa-smile-o"></span>
<p class="number">535</p>
<h4>Awards</h4> </div>
</div>
<div class="col-md-3 ">
<div class="count"> <span class="fa fa-smile-o"></span>
<p class="number">896</p>
<h4>Total Hours</h4> </div>
</div>
<div class="col-md-3 ">
<div class="count"> <span class="fa fa-smile-o"></span>
<p class="number">777</p>
<h4>Projects Complete</h4> </div>
</div>
</div>
</div>
</section>
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
/* Counter Section */
#counter {
background-color: #ffb400;
color: #fff;
display: block;
overflow: hidden;
text-align: center;
padding: 100px 0;
}
#counter .count {
padding: 50px;
background: rgba(255, 255, 255, 0.1);
color: #fff;
text-align: center;
}
.count h4 {
color: #fff;
font-size: 16px;
margin-top: 0;
}
#counter .count .fa {
font-size: 40px;
display: block;
color: #fff;
}
#counter .number {
font-size: 30px;
font-weight: 700;
margin: 0;
}
/* Pricing Section */
#pricing {
background: #f7f7f7;
}
.pricing-items {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: