ShapeYourPath
(current)
Run Code
Live Code Editor- Bootstrap 4 Animated Progress Bar
Source Code
<!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> Bootstrap 4 Animated Progress Bar <!-- Bootstrap CSS --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"> <title>Bootstrap 4 Animated Progress Bar</title> </head> <body> <div class="container mt-5"> <h1>Bootstrap 4 Animated Progress Bar </h1> <p class="text-justify"> Let us see the process of creating animated progress bar.</p> <div class="progress-bar progress-bar-striped progress-bar-animated" style="width:70%">70%</div> </div> <!--/container--> <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.min.js"></script> </body> </html>
Output :
Running