#TIL
<progress>
- progress indicator element
- attribute
max
- how much “work” the task requires- must be a floating point number
- default value = 1
- attribute
value
- how much task has been completed- must be between 0 and max (or 0 and 1 if max is omitted)
- min value is always 0
- example code:
<progress value="70" max="100">70 %</progress>