width
Contains the preferred count of characters that a line should have. Though technically still implemented, this attribute has no visual effect; to achieve such an effect, use CSS widthinstead.
value
Definition and Usage
The value attribute specifies how much of the task has been completed.The value must be a non-negative number between 0 and the max value.
Attribute Values
| Value | Description |
|---|---|
| number | A floating point number that specifies how much of the task has been completed |
max
Definition and Usage
The max attribute specifies how much work the task requires in total.
The progress bar can be added with <progress>; the progress value is determined with the value, min and max attributes, as follows.It should have a value greater than zero and a valid floating point number.
<progress value="10" max="100"></progress>
Attribute Values
| Value | Description |
|---|---|
| number | A floating point number that specifies how much work the task requires in total before it can be considered complete. Default value is 1.0 |
Since this is a native progress bar, the presentation is vary dependent on the platform. Below is how a native progress bar looks in Windows and OSX.
cite
Definition and Usage
The cite attribute of q tag specifies the source URL of a quote. A link to the source of the quotation or information about its context.
Attribute Values
| Value | Description |
|---|---|
| URL | Specifies the source URL of the quote.Possible values:
|
type
Definition and Usage
The type attribute specifies the Internet media type (formerly known as MIME type) of a script.
The type attribute identifies the content between the <script> and </script> tags.
The media type consists of two parts: one media type and one subtype. For JavaScript, the media type is “text/javascript”.This attribute identifies the scripting language of code embedded within a script element or referenced via the element’s src attribute. This is specified as a MIME type; examples of supported MIME types include text/javascript, text/ecmascript, application/javascript, and application/ecmascript. If this attribute is absent, the script is treated as JavaScript.If the MIME type specified is not a JavaScript type the content embedded within its tags is treated as a data block which won’t be processed by the browser.
Attribute Values
| Value | Description |
|---|---|
| media_type | Specifies the Internet media type of the script.
Some common values:
|
