Bootstrap Panels

Panel refers to a bordered box with some padding around its content. Bootstrap provides the .panel class to create the panel. The .panel-body class is used for the content inside the panel. Bootstrap Basic Panel Example: <!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap Basic Panel 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/3.3.7/css/bootstrap.min.css"> <script … Read more

Bootstrap 4 List Group Disabled

Bootstrap provide the facility to create a group of list with list items. The most basic list group is an unordered list with list items. Use an ul element with class .list-group, and li elements with class .list-group-item to create a basic list group. The .disabled class is used to disable an item. Bootstrap 4 … Read more

Bootstrap 4 List Groups

Bootstrap provide the facility to create a group of list with list items. The most basic list group is an unordered list with list items. Use an ul element with class .list-group, and li elements with class .list-group-item to create a basic list group. Bootstrap 4 List Groups Example: <!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap … Read more

Bootstrap List Groups

Bootstrap provide the facility to create a group of list with list items. The most basic list group is an unordered list with list items. Use an ul element with class .list-group, and li elements with class .list-group-item to create a basic list group. Bootstrap Basic List Group Example: <!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap … Read more

Bootstrap Pager

Pager is also a form of pagination. Pager provides previous and next buttons (links). Add the .pager class to an ul element to create previous/next buttons. Bootstrap Pager Example: <!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap Pager 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/3.3.7/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/3.3.7/js/bootstrap.min.js"></script> </head> <body>   <div class="container"> … Read more

Bootstrap 4 Pagination

Pagination is the process of separating print or digital content into discrete pages. Basic pagination is created by adding the .pagination class to an ul element. Then add the .page-item to each li element and a .page-link class to each link inside li. Bootstrap 4 Pagination Example: <!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap 4 Pagination … Read more

Bootstrap Pagination

Pagination is the process of separating print or digital content into discrete pages. Basic pagination is created by adding the .pagination class to an ul element. Bootstrap Pagination Example: <!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap Pagination 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/3.3.7/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/3.3.7/js/bootstrap.min.js"></script> </head> <body>   <div class="container"> … Read more

Bootstrap 4 Progress Bar

A progress bar is a graphical control element used to visualize the progression of an extended computer operation. Bootstrap provides several types of progress bars. The .progress class is used with div element to create default progress bar. Bootstrap 4 Basic Progress Bar Example: <!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap 4 Basic Progress Bar Example</title> … Read more

Bootstrap Progress Bar

A progress bar is a graphical control element used to visualize the progression of an extended computer operation. Bootstrap provides several types of progress bars. The .progress class is used with div element to create default progress bar. Bootstrap Basic Progress Bar Example: <!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap Basic Progress Bar Example</title> <meta charset="utf-8"> … Read more

Bootstrap Labels

Labels are used to provide additional information about something. The .label class one of the six contextual classes .label-default, .label-primary, .label-success, .label-info, .label-warning or .label-danger, within a element is used to create a label. Bootstrap Labels Example: <!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap Labels 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/3.3.7/css/bootstrap.min.css"> <script … Read more