Breadcrumb provides the hierarchical navigation of a webpage. If the webpage resides deep down the hierarchy, breadcrumb helps in navigation. This will be most useful for the websites having large number of webpages. It indictes the cuurent location of a webpage. Home Folder 1 Folder 2 <ol class="breadcrumb"> <li><a href="#">Home</a></li> <li><a href="#">Folder 1</a></li> <li><a href="#">Folder 2</a></li> </ol> In above example, Folder 1 resides inside Home directory and Folder 2 resides inside Folder 1. We need to add .breadcrumb class to the ol HTML tag. Seperators will be automatically added by CSS through ::before and content as shown below. .breadcrumb > li + li:before { color:#CCCCCC; content:"/ "; padding:05px; }
Progress on any task keeps a vital role. The bar graph which shows the completion percentage got the name progress bar. The default HTML 5 progress bar is very simple both in look and the information it provides. It makes users to add CSS and JavaScript as per the requirement. Bootstrap progress bar overcomes the addition of CSS and JavaScript with its inbuilt beauty and maturity. Default bootstrap progress bar Default HTML5 progress bar looks as shown below 0% 25% 50% 75% 100% <progress class="progress" value="0" max="100">0%</progress> <progress class="progress" value="25" max="100">25%</progress> <progress class="progress" value="50" max="100">50%</progress> <progress class="progress" value="75" max="100">75%</progress> <progress class="progress" value="100" max="100...