<!DOCTYPE html>
<html>
<title>W3.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../lib/w3.css">
<body class="w3-container">
<h2>Progress Bar Colors</h2>
<p>Use any of the w3-color classes to change the color of the progress bar.</p>
<div class="w3-progress-container">
<div id="myBar" class="w3-progressbar w3-green" style="width:25%"></div>
</div><br>
<div class="w3-progress-container">
<div id="myBar" class="w3-progressbar w3-red" style="width:50%"></div>
</div><br>
<div class="w3-progress-container w3-light-blue">
<div id="myBar" class="w3-progressbar w3-blue" style="width:75%"></div>
</div>
</body>
</html>