<!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</h2>
<p>Change the size of the progress bar with the width property (from 0 to 100%).</p>

<div class="w3-progress-container">
  <div id="myBar" class="w3-progressbar" style="width:10%"></div>
</div>

<p>Colored progress bar:</p>
<div class="w3-progress-container">
  <div id="myBar" class="w3-progressbar w3-green" style="width:25%"></div>
</div>

</body>
</html>