<!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>The w3-progress-container class defines a container for the progress bar, and the w3-progressbar defines the actual progress bar (the "filled" area). Set the width of the progress bar with the CSS width property (from 0 to 100%).</p>
<div class="w3-progress-container">
<div id="myBar" class="w3-progressbar" style="width:10%"></div>
</div>
</body>
</html>