"Column with badge"
Bootstrap 4.1.1 Snippet by superbwebdeveloper

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="//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 ---------->
<div class="main-wraper bg-grey-2 padd-90">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-8 mx-auto">
<div class="second-title">
<!--<h4 class="color-dark-2-light">our directions</h4>-->
<h2>Popular Destinations</h2>
</div>
</div>
</div>
<div class="tour-item-grid row">
<div class="col-12 col-xs-6 col-sm-6 col-md-4 clear-xs-2 clear-md-3">
<div class="tour-item style-2">
<div class="radius-top">
<img src="https://via.placeholder.com/150" alt="">
<div class="tour-weather">mountains</div>
</div>
<div class="tour-desc bg-white">
<a href="#" class="c-button bg-green hv-green-o delay-2 small"><span>view more</span></a>
<h4><a class="tour-title color-dark-2 link-green" href="#">Alps Mountains</a></h4>
<div class="tour-text color-grey-3">Nunc cursus libero purus ac cong.</div>
</div>
</div>
</div>
<div class="col-12 col-xs-6 col-sm-6 col-md-4 clear-xs-2 clear-md-3">
<div class="tour-item style-2">
<div class="radius-top">
<img src="https://via.placeholder.com/150" alt="">
<div class="tour-weather">sea tours</div>
</div>
<div class="tour-desc bg-white">
<a href="#" class="c-button bg-green hv-green-o delay-2 small"><span>view more</span></a>
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
.main-wraper {
position: relative;
width: 100%;
overflow: hidden;
display: block;
}
.padd-90 {
padding-bottom: 90px;
}
.bg-grey-2 {
background: #f8f8f8;
}
.second-title {
position: relative;
text-align: center;
padding-top: 110px;
padding-bottom: 65px;
}
.second-title h4 {
font-weight: 700;
letter-spacing: 2px;
margin-bottom: 7px;
font-size: 16px;
line-height: 22px;
text-transform: uppercase;
}
.color-dark-2-light {
color: rgba(34, 34, 34, 0.6);
}
.second-title>*:last-child {
padding-bottom: 0px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: