How to create progress bar in bootstrap

Manideepgoud
Posted by Manideepgoud under Bootstrap category on | Points: 40 | Views : 1950
In order to create progress bars using bootstrap we need to use
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</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.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</head>
<body>
<div class="progress">
<div class="progress-bar progress-bar-info" style="width: 70%;">
Please wait... </div>
</div>
</body>
</html>


For
stripped progress bar we use
 progress-striped

For
Animated striped progress bar we use
progress-striped active

Comments or Responses

Login to post response