- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Create a Bootstrap 4 card header
To create a card header in Bootstrap 4, use the card-header class. Set the header inside the card using the class −
<div class="card-header"> Product List </div>
After adding the header, add the body of the card as shown in the following code snippet −
<div class="card-header">Product List</div> <div class="card-body"> <p class="card-text">Product One</p> <p class="card-text">Product Two</p> </div> </div>
Let us see an example to learn how to create Bootstrap 4 card header −
Example
<!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap Example</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <h2>Products</h2> <div class="card"> <div class="card-header">Product List</div> <div class="card-body"> <p class="card-text">Product One</p> <p class="card-text">Product Two</p> </div> <div class="card-footer"> This was the list of products in stock. </div> </div> </div> </body> </html>
- Related Articles
- Bootstrap 4 .card-header class
- Bootstrap 4 .card-header-pills class
- Bootstrap 4 .card-header-tabs class
- Style navigation tabs inside the Bootstrap 4 card header
- Style navigation pills inside the Bootstrap 4 card header
- How to create footer for Bootstrap 4 card
- Create a grid of cards using Bootstrap 4 .card-deck class
- Bootstrap 4 .card-text class
- Bootstrap 4 .card-link class
- Bootstrap 4 .card-footer class
- Bootstrap 4 .card-subtitle class
- Bootstrap 4 .card-body class
- Bootstrap 4 .card-columns class
- Bootstrap 4 .card-group class
- card-title class in Bootstrap 4

Advertisements