-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogressbar.html
46 lines (34 loc) · 1.28 KB
/
progressbar.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="bootstrap.min.css">
<script src="bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="progress">
<div class="progress-bar" style="width:40%">
</div>
</div>
<div class="progress">
<div class="progress-bar" style="width:44%">44%</div>
</div>
<div class="progress">
<div class="progress-bar bg-secondary" style="width:45%">45%</div>
</div>
<div class="progress">
<div class="progress-bar bg-danger progress-bar-striped" style="width:40%"></div>
</div>
<div class="progress">
<div class="progress-bar progress-bar-striped progress-bar-animated" style="width: 45%;">45%</div>
</div>
<div class="progress">
<div class="progress-bar bg-success progress-bar-striped" style="width:40%">Ereespace</div>
<div class="progress-bar bg-secondary" style="width: 30%">Fee</div>
<div class="progress-bar bg-success" style="width: 10%;">jnd</div>
</div>
</body>
</html>