Arteqo Consulting

The European Web Agency

Design, brand and digital development


×

Arteqo Consulting Services

Contact Arteqo

×
I have read and accept the terms and conditions

progress tag

The progress tag, which, when implemented in the code, is written like this - <progress>, is an HTML tag that belongs to formatting tags. Formatting HTML tags are used to introduce additional information and/or style to smaller parts of a text, such as words, phrases, qotes etc. Some of them are also used to mark special text elements, e.g. acronyms, for browsers and search engines to parse and understand correctly. Given their function, formattings HTML tags are usually inline elements.

<progress> represents the progress of a task. This tag is supported in the current version of HTML, which is HTML5.

Browser support

Here you can see whether <progress> is supported by a certain browser, and, if yes, starting from which version it is supported.

Browser support for <progress>
ChromeFirefoxEdgeOperaSafari
Supported since Chrome v8Supported since Firefox v16Supported since Edge v10Supported since Opera v11Supported since Safari v6

Attributes and values

An attribute is a piece of additional information about a tag. While tags denote the type of objects they mark or create, attributes set the parameters of these objects. These parameters can include anything from the types of possible interactions to its visual style to its actual contents.

Values indicate how a certain attribute is actually implemented, if there is a number of ways it can happen.

What attributes are actually allowed in a certain tag depends on the tag itself. Much like possible attributes depend on a tag, possible values depend on an attribute.

The <progress> tag supports the following attributes (with their respective values):

AttributeValueDescription
maxnumberSpecifies how much work the task requires in total
valuenumberSpecifies how much of the task has been completed

Global Attributes

Global attributes are HTML tag attributes that can be used by any tag, hence the name "global". They are in contrast to unique attributes that are tag-specific.

<progress> supports global attributes.

Event Attributes

Event attributes are HTML tag attributes that allow triggering actions upon specific conditions, hence the name "event". Other types of attributes, namely global and unique attributes, can also trigger actions, but the difference is that even attributes allow calling scripts, such as JavaScript functions, while most other attributes only support a certain type of action.

<progress> supports event attributes.