<div class="progress-bar position" data-percent="echo percentage;" data-duration="1000" data-color="red,green"></div>
or try this
<!DOCTYPE html>
<html>
<title>W3.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<body>
<div class="w3-container">
<h2>Dynamic Progress Bar with Labels</h2>
<p>Label outside of the progress bar:</p>
<div class="w3-light-grey">
<div id="myBar" class="w3-container w3-green" style="height:24px;width:20%"></div>
</div>
<p id="demo">20%</p>
<button class="w3-button w3-green" onclick="move()">Click Me</button>
</div>
<script>
function move() {
var elem = document.getElementById("myBar");
var width = 20;
var id = setInterval(frame, 10);
function frame() {
if (width >= 100) {
clearInterval(id);
} else {
width++;
elem.style.width = width + '%';
document.getElementById("demo").innerHTML = width * 1 + '%';
}
}
}
</script>
</body>
</html>