Bootstrap Breadcrumb Navigation
Introduction
With Bootstrap, you can create breadcrumb navigation. In this tutorial, you will learn how to do this.
Here is the final output created:
HTML5 Code for Creating Breadcrumb Navigation with Bootstrap
Example
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Bootstrap Breadcrumb Navigation</title>
<meta name="description" content="Bootstrap breadcrumbs Example">
<link href="../bootstrap/twitter-bootstrap-v2/docs/assets/css/bootstrap.css" rel="stylesheet">
<style type="text/css">
body {
padding: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="span6">
<ul class="breadcrumb">
<li>
<a href="#">Home</a> <span class="divider">></span>
</li>
<li>
<a href="#">Tutorials</a> <span class="divider">></span>
</li>
<li class="active">HTML5</li>
</ul>
</div>
</div>
</div>
</body>
</html>
CSS class
Click here to download all HTML, CSS, JS, and image files used in this tutorial.