HTML CSS examples for Bootstrap:List
Linked List Groups
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Example of Bootstrap 3 Linked List Groups</title> <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/1.12.4/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <style type="text/css"> .list-group{<!--from ww w . jav a 2 s .c om--> width: 200px; } </style> </head> <body> <div> <div class="list-group"> <a href="#" class="list-group-item active"> <span class="glyphicon glyphicon-camera"></span> Pictures <span class="badge">25</span> </a> <a href="#" class="list-group-item"> <span class="glyphicon glyphicon-file"></span> Documents <span class="badge">145</span> </a> <a href="#" class="list-group-item"> <span class="glyphicon glyphicon-music"></span> Music <span class="badge">50</span> </a> <a href="#" class="list-group-item"> <span class="glyphicon glyphicon-film"></span> Videos <span class="badge">8</span> </a> </div> </div> </body> </html>