ShapeYourPath
(current)
Run Code
Live Code Editor- Bootstrap Card Having Header And Footer Section
Source Code
<!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <!-- Bootstrap CSS --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet"> <title>Bootstrap 5 Card Header & Footer</title> </head> <body> <h1 class="text-center">Bootstrap Card With Header And Footer</h1> <p class="text-justify text-center">Let us understand bootstrap card having card header, card body and card footer section.</p> <div class="container"> <div class="row"> <div class="col-12 col-sm-8 offset-sm-2"> <div class="card"> <div class="card-header">Bootstrap card Heading</div> <div class="card-body"> <p class="card-text">Bootstrap card can support text information, images, link, list-group, navs etc.</p> </div> <div class="card-footer"> <a href="#" class="card-link">card-link 1</a> <a href="#" class="card-link">card-link 2</a> </div> </div> <!--/card--> </div><!--/offset-sm-2--> </div><!--/row--> </div><!--/container--> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"></script> </body> </html>
Output :
Running