0
How to write a code in html showing progress of certain percentage?
If I am told to write a code showing progress of 65%
5 Respostas
+ 2
This will help you:
https://code.sololearn.com/WJqv5tPfKuso/?ref=app
+ 1
Check this:
https://www.w3schools.com/w3css/w3css_progressbar.asp
Hope it helps.
+ 1
If you want to see the progress in percentage , then you have to learn JavaScript.
0
Use progress tag <progress min="0" max="100" value="65"></progress>
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