"cards"
Bootstrap 4.1.1 Snippet by saikrishna99666

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 ---------->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Services Section Design example in Bootstrap 4</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.10.2/css/all.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<!-- ======= Services Section ======= -->
<section class="services">
<div class="container">
<div class="section-title">
<h2>Our Services</h2>
<p class="col-md-8 offset-md-2">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6" data-aos="fade-up">
<div class="service-box">
<i class="fas fa-basketball-ball"></i>
<h4><a href="">Basketball</a></h4>
<p>Basketball is a team sport in which two teams, most commonly of five players each, opposing one another on a rectangular court</p>
<a href="#" class="btn btn-success center-block mt-2 mb-2">Read More »</a>
</div>
</div>
<div class="col-lg-4 col-md-6" data-aos="fade-up">
<div class="service-box">
<i class="fas fa-football-ball"></i>
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
<style>
/*-----------------------------------------------------
# Services
-----------------------------------------------------*/
.services {
padding-bottom: 30px;
text-align: center;
padding: 50px 0px;
}
.services .section-title h2 {
color: #444;
font-size: 42px;
}
.services .section-title p {
text-align: center;
font-style: italic;
margin-bottom: 40px;
color: #666;
}
.services .service-box {
margin-bottom: 30px;
padding: 15px;
text-align: center;
box-shadow: 0px 0 5px #bdbdbd;
float: left;
position: relative;
z-index: 1;
overflow: hidden;
}
.services .service-box::after {
content: '';
position: absolute;
width: 100%;
height: 100%;
background: #f1f1f1;
left: 0px;
top: -500px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: