
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Bootstrap Panel with List groups
Include list groups within any panel. Create a panel by adding class .panel to the <div> element. Also, add class .panel-default to this element. Now within this panel include your list groups.
You can try to run the following code to set panel with list groups −
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href="/https/www.tutorialspoint.com/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 = "panel panel-default"> <div class = "panel-heading">Panel heading</div> <div class = "panel-body"> <p>The following is a list of topics in Java.</p> </div> <ul class = "list-group"> <li class = "list-group-item">Java Interfaces</li> <li class = "list-group-item">Java Packages</li> <li class = "list-group-item">File Handling in Java</li> </ul> </div> </body> </html>
Advertisements