Create a progress bar
Description
The following code shows how to create a progress bar.
Example
<!DOCTYPE HTML>
<html>
<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">
<!--from w ww .j av a 2 s .c o m-->
</head>
<body style='margin: 20px'>
<div class="progress progress-striped">
<div class="bar" style="width: 60%;"></div>
</div>
</body>
</html>