https://codepen.io/ananyaneogi/pen/PrKbey
HTML :
<h1>Progress & Meter</h1>
<progress value="56" max="100"></progress>
<meter min="0" max="100" value="56" low="25" high="75" optimum="50"></meter>
CSS :
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;
}
등록된 댓글이 없습니다.