CSS Day: 62

Chanak Karki
1 min readJun 27, 2021
Day 62 in yellow
Day 62 in yellow

Today is going to be about progress bar, when I first saw it, I was thinking JavaScript might be needed to construct it, but it turns out it comes preloaded with HTML5.

To construct the progress bar, one would need the progress element.

//HTML<div class="container">
<div class="container__progress">
<progress max='100' value='20'></progress> 👈 this is what allows us to create the

--

--