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 Answer Checked By - Dawn Plyler (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.