Can anybody explain the progress section with an example? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Can anybody explain the progress section with an example?

21st Dec 2016, 2:52 PM
S.Archana
S.Archana - avatar
1 Answer
+ 50
The basic <progress> tag is written like this <progress value="" max=""></progress>. Where the value attribute shows how far the task has progressed, and the max attribute indicates how much work the task requires in total. Here is some example: <p> Progress Bar: <progress value="75" max="100"></progress> </p> If the progress bar does not have a value attribute then it will be in the indeterminate state. Try it yourself :)
27th Jan 2017, 8:45 AM
//Lana Wilson
//Lana Wilson - avatar