How to write a code in html showing progress of certain percentage? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

How to write a code in html showing progress of certain percentage?

If I am told to write a code showing progress of 65%

16th Apr 2021, 7:40 PM
Gayatri Ghosh
Gayatri Ghosh - avatar
5 Answers
16th Apr 2021, 7:47 PM
JaScript
JaScript - avatar
18th Apr 2021, 8:20 AM
R.P.
R.P. - avatar
+ 1
If you want to see the progress in percentage , then you have to learn JavaScript.
18th Apr 2021, 5:25 PM
Jashwan Mathur
Jashwan Mathur - avatar
0
Use progress tag <progress min="0" max="100" value="65"></progress>
9th Mar 2022, 10:11 AM
Ghislain Ulrich Alfred Nyongo
Ghislain Ulrich Alfred Nyongo - avatar
0
<div class="progress"> <div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width:70%"> </div> </div> Regards, Jimmy
1st Nov 2022, 6:19 AM
Jimmy Wick
Jimmy Wick - avatar