<h1>Progress & Meter</h1>

<progress value="56" max="100"></progress>
<meter min="0" max="100" value="56" low="25" high="75" optimum="50"></meter>
/* Only for styling, not required for it to work */
body {
	background-color: aliceblue;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

h1 {
	font-size: 3rem;
	color: darksla;
	font-family: "Berkshire Swash", cursive;
	text-align: center;
}

meter {
	margin-top: 20px;
	width: 150px;
}
Run Pen

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.