Issue
I am developing my first site with codeigniter,html, dreamweaver and photoshop.
I made feedback page and want display the result as all websites i see.
for example enter
80% excellent with line
40% good with line
how display this line ? with any tool?please.
Solution
You can use bootstrap for this,
<div class="progress">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width:40%">
40% Complete (success)
</div>
</div>
See Official Bootstrap and w3schools for more information.
Answered By – Niranjan N Raju
This Answer collected from stackoverflow, is licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0