<h1>Progress & Meter</h1>
<progress value="56" max="100"></progress>
<meter min="0" max="100" value="75" 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;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.