Html – Progress bar will animate, but then immdiately return back to zero
HTML: <div class="container"> <div class="progress-bar"></div> </div> CSS: .container { height: 10px; width: 30%; background-color: lightgrey; position: relative; border-radius: 3px; top: 35%; left: 15%; } .container .progress-bar { position: absolute; height: 100%; border-radius: 3px; background-color: #393939; animation: progress-animation 5s forwards; }…