HTML CSS examples for HTML Tag:progress
Show progress bar with <progress>
<html> <head> <style> li {<!--from w w w. j a v a2 s. c o m--> width:281px } progress { float:right; border:none; } </style> </head> <body> <ul> <li>Lorem <progress max="100" value="80"></progress> </li> <li>Lorem ips<progress max="100" value="50"></progress> </li> <li>Lorem ip<progress max="100" value="40"></progress> </li> <li>Lorem ipsu<progress max="100" value="20"></progress> </li> <li>Lorem<progress max="100" value="90"></progress> </li> </ul> </body> </html>