<!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 Sizes</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:25%"></div>
</div><br>
<div class="w3-progress-container">
<div id="myBar" class="w3-progressbar" style="width:50%"></div>
</div><br>
<div class="w3-progress-container">
<div id="myBar" class="w3-progressbar" style="width:75%"></div>
</div>
</body>
</html>