Progress bar in html
The <progress> tag represents the progress of a task.
<!DOCTYPE html>
<html>
<body>
Downloading progress:
<progress value="22" max="100">
</progress>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
Downloading progress:
<progress value="22" max="100">
</progress>
</body>
</html>
Output:
Downloading progress:
Note: The progress tag is not supported in Internet Explorer 9 and earlier versions.
Comments
Post a Comment