content logo

Bootstrap Cards:

Bootstrap Skill Boxes

Using the card is one of the most functional elements in all websites. You can use this post to organize your website easily. In this post, we have provided the Bootstrap Skill Boxes HTML CSS with an amazing theme that people can use on their pages to attract more visitors. This Bootstrap Card Effect helps you to classify the information and pictures of your website into different sections. As a result, you can save the physical space of your page. Then, it will look more regular. For example, you can add related photos and information into their specific section in this Bootstrap Card with Border.

You can see different sections in this Card Code with Effect in some rectangle shapes. Each one has a photo and a title at the top of the section. These parts are customizable and you can change the icon and title easily. As you move the cursor of the mouse on a section, its border will appear with a hover effect. This border is all around the field and there is a line in the middle of the page. You can use this Hover Effect for Cards to change your website’s theme.

#

Bootstrap Card with Border

#

Card Code with Effect

#

Hover Effect for Cards

#

Bootstrap Card Effect

<!-- This script got from frontendfreecode.com -->
<div class="mt-4"></div>
<div class="container">
    <div class="row">
        <div class="col-6 col-md-3">
            <div class="card skill-card">
                <div class="card-img">
                    <img src="http://frontendfreecode.com/img/html-logo.png" alt="" class="img-fluid">
                </div>
                <div class="card-body">
                    <h4>HTML</h4>
                </div>
            </div>
        </div>
        <div class="col-6 col-md-3">
            <div class="card skill-card">
                <div class="card-img">
                    <img src="http://frontendfreecode.com/img/html-logo.png" alt="" class="img-fluid">
                </div>
                <div class="card-body">
                    <h4>HTML</h4>
                </div>
            </div>
        </div>
        <div class="col-6 col-md-3">
            <div class="card skill-card">
                <div class="card-img">
                    <img src="http://frontendfreecode.com/img/html-logo.png" alt="" class="img-fluid">
                </div>
                <div class="card-body">
                    <h4>HTML</h4>
                </div>
            </div>
        </div>
        <div class="col-6 col-md-3">
            <div class="card skill-card">
                <div class="card-img">
                    <img src="http://frontendfreecode.com/img/html-logo.png" alt="" class="img-fluid">
                </div>
                <div class="card-body">
                    <h4>HTML</h4>
                </div>
            </div>
        </div>
        <div class="col-6 col-md-3">
            <div class="card skill-card">
                <div class="card-img">
                    <img src="http://frontendfreecode.com/img/html-logo.png" alt="" class="img-fluid">
                </div>
                <div class="card-body">
                    <h4>HTML</h4>
                </div>
            </div>
        </div>
        <div class="col-6 col-md-3">
            <div class="card skill-card">
                <div class="card-img">
                    <img src="http://frontendfreecode.com/img/html-logo.png" alt="" class="img-fluid">
                </div>
                <div class="card-body">
                    <h4>HTML</h4>
                </div>
            </div>
        </div>

    </div>
</div><a style="font-size: 8pt; text-decoration: none" target="_blank" href="http://frontendfreecode.com">Free Frontend</a>
                                                                            
.skill-card {
  margin-bottom: 1rem;
  border: 1px solid #F0ECE3;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: 0.5s all ease;
  cursor: pointer;
}
.skill-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.16);
  border-color: #000;
}
.skill-card:hover .card-img {
  border-bottom-color: #000;
}
.skill-card .card-img {
  padding: 10px;
  border-bottom: 1px solid #F0ECE3;
  border-radius: 0;
  display: flex;
  align-items: center;
  transition: 0.5s all ease;
}

.skill-card .card-img img {
  margin: auto;
  width: 100px;
  height: auto;
}
.skill-card .card-body h4 {
  color: #000;
  font-size: 1rem;
  text-align: center;
}
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/bootswatch/5.1.3/cerulean/bootstrap.min.css'>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.1.3/js/bootstrap.min.js'></script>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- This script got from frontendfreecode.com -->

<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/bootswatch/5.1.3/cerulean/bootstrap.min.css'>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.1.3/js/bootstrap.min.js'></script>
<style>
.skill-card {
  margin-bottom: 1rem;
  border: 1px solid #F0ECE3;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: 0.5s all ease;
  cursor: pointer;
}
.skill-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.16);
  border-color: #000;
}
.skill-card:hover .card-img {
  border-bottom-color: #000;
}
.skill-card .card-img {
  padding: 10px;
  border-bottom: 1px solid #F0ECE3;
  border-radius: 0;
  display: flex;
  align-items: center;
  transition: 0.5s all ease;
}

.skill-card .card-img img {
  margin: auto;
  width: 100px;
  height: auto;
}
.skill-card .card-body h4 {
  color: #000;
  font-size: 1rem;
  text-align: center;
}
</style>

</head>
<body>
<div class="mt-4"></div>
<div class="container">
    <div class="row">
        <div class="col-6 col-md-3">
            <div class="card skill-card">
                <div class="card-img">
                    <img src="http://frontendfreecode.com/img/html-logo.png" alt="" class="img-fluid">
                </div>
                <div class="card-body">
                    <h4>HTML</h4>
                </div>
            </div>
        </div>
        <div class="col-6 col-md-3">
            <div class="card skill-card">
                <div class="card-img">
                    <img src="http://frontendfreecode.com/img/html-logo.png" alt="" class="img-fluid">
                </div>
                <div class="card-body">
                    <h4>HTML</h4>
                </div>
            </div>
        </div>
        <div class="col-6 col-md-3">
            <div class="card skill-card">
                <div class="card-img">
                    <img src="http://frontendfreecode.com/img/html-logo.png" alt="" class="img-fluid">
                </div>
                <div class="card-body">
                    <h4>HTML</h4>
                </div>
            </div>
        </div>
        <div class="col-6 col-md-3">
            <div class="card skill-card">
                <div class="card-img">
                    <img src="http://frontendfreecode.com/img/html-logo.png" alt="" class="img-fluid">
                </div>
                <div class="card-body">
                    <h4>HTML</h4>
                </div>
            </div>
        </div>
        <div class="col-6 col-md-3">
            <div class="card skill-card">
                <div class="card-img">
                    <img src="http://frontendfreecode.com/img/html-logo.png" alt="" class="img-fluid">
                </div>
                <div class="card-body">
                    <h4>HTML</h4>
                </div>
            </div>
        </div>
        <div class="col-6 col-md-3">
            <div class="card skill-card">
                <div class="card-img">
                    <img src="http://frontendfreecode.com/img/html-logo.png" alt="" class="img-fluid">
                </div>
                <div class="card-body">
                    <h4>HTML</h4>
                </div>
            </div>
        </div>

    </div>
</div><div id="bcl"><a style="font-size:8pt;text-decoration:none;" href="http://www.devanswer.com">Free Frontend</a></div>

</body>
</html>
Preview