Breadcrumbs are used to show the current page's location in the site hierarchy.
A breadcrumb is a navigation scheme that indicates the user's location in a website.
Bootstrap's breadcrumb component has a simple markup and can be used anywhere in your website.
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</head><!-- www .ja v a 2 s. c o m-->
<body style='margin:30px'>
<ol class="breadcrumb">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li class="active">Author</li>
</ol>
</body>
</html>