Bootstrap Breadcrumb

 

The .breadcrumb class indicates the current page's location within a navigational hierarchy.

 
 
 
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script> <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <h2>Breadcrumbs</h2> <ul class="breadcrumb"> <li><a href="#">Home</a></li> <li><a href="#">Contacts</a></li> <li><a href="#">Gallery</a></li> <li><a href="#">About us</a></li> </ul> </div> </body> </html>
Output