The following code shows example to use bootstrap "breadcrumbs" to create a wizard like workflow.
<html lang="en"> <head> <title>Bootstrap Example for breadcrumb</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <p>The .breadcrumb class indicates the current page's location within a navigational hierarchy:</p> <ol class="breadcrumb"> <li><a href="#">Home</a></li> <li><a href="#">Clothing</a></li> <li><a href="#">Women</a></li> <li class="active">Hand bags</li> </ol> </body> </html>The .breadcrumb class indicates the current page's location within a navigational hierarchy.Curently,we are at "hand bags" page whose label is in "grey color".The .active class indicates that it is on the current page.
No comments:
Post a Comment