Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Create a list group heading in Bootstrap
To create a list group heading, use the .list-group-item-heading class in Bootstrap.
You can try to run the following code to implement .list-group-item-heading class −
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <div class = "container"> <h1>Countries</h1> <ul class = "list-group"> <li class = "list-group-item"> <h3 class = "list-group-item-heading">Asia</h3> <p class = "list-group-item-text">India</p> <p class = "list-group-item-text">Nepal</p> </li> <li class = "list-group-item"> <h3 class = "list-group-item-heading">Europe</h3> <p class = "list-group-item-text">Germany</p> <p class = "list-group-item-text">Italy</p> <p class = "list-group-item-text">Spain</p> </li> </ul> </div> </body> </html>
Advertisements
