English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

HTML Reference Manual

Complete List of HTML Tags

HTML progress value attribute

The progress value attribute is a floating-point number used to specify how much of a task has been completed.

 HTML <progress> tag

Online Examples

Downloading:

<!DOCTYPE html>
<html>
<head>
<title>HTML: <progress> value attribute - Basic Tutorial Website (oldtoolbag.com)<//title>
</head>
<body>
Downloading progress:
<progress value="22" max="100">
</progress>
</body>
</html>
Test and see ‹/›

Browser Compatibility

IEFirefoxOperaChromeSafari

Internet Explorer 10、Firefox、Opera、Chrome and Safari 6 supports the value attribute.

Note:Internet Explorer 9 and earlier versions do not support the value attribute of the <progress> tag.

Definition and Usage

The value attribute specifies how much of a task has been completed.

HTML 4.01 and HTML5differences between

The <progress> tag is an HTML5 of the new tag in.

Syntax

<progress value="number">

Attribute value

ValueDescription
numberA floating-point number used to specify how much of a task has been completed.
 HTML <progress> tag