HTML and CSS progress bar -


i want create progress bar in below image:

progress bar - image

no idea how create it.

would please give me creating progress bar?

you can use html5 progress element

html

<progress max="100" value="80"></progress> 

css

progress {     height: 16px;     width: 400px;     -moz-appearance: none;     -webkit-appearance: none;     appearance: none;     border-radius: 24px;     background: #fff;     border: solid 2px #e5e5e5; } progress::-webkit-progress-bar {     height: 16px;     background: #37cc7d;     border-radius: 20px; } progress::-webkit-progress-value {     height: 16px;     background: #37cc7d;     border-radius: 20px; } progress::-moz-progress-bar {     height: 16px;     background: #37cc7d;     border-radius: 20px; } 

major modern browsers run progress element - caniuse

demo here


Comments

Popular posts from this blog

qt - Using float or double for own QML classes -

Create Outlook appointment via C# .Net -

ios - Swift Array Resetting Itself -