HTML – Meter Tag
The <meter> tag defines a scalar measurement within a known range, or a fractional value. The <meter> tag should NOT be used to indicate progress. The <progress> tag is used for that.
The <meter> tag defines a scalar measurement within a known range, or a fractional value. The <meter> tag should NOT be used to indicate progress. The <progress> tag is used for that.
The <nav> tag defines a set of navigation links intended to be a navigation block such as a main menu, sidebar menu, or footer menu.
The <noscript> tag is used to provide browsers, which cannot display scripts, with alternative content to display on the page. The <noscript> is usually placed directly after the intended <script>.
The <object> tag defines a container for an external resource such a web page, image, video, or animation.
The <optgroup> tag is used to group related options in a <select> element (drop-down list), which makes things easier to see for the user.
The <option> tag defines an option in a <select> element, <optgroup> element, or <datalist> element.
The <ol> tag defines an ordered list which can be numerical or alphabetical.
The <output> tag specifies the result of a calculation often performed in a script.
The <p> tag defines text inside a paragraph. Each paragraph of text should be contained in a set of <p> tags. Browsers will add space below each paragraph.
The <picture> tag gives web developers more flexibility in including image resources by specifying different images to be used on various display sizes.
The <pre> tag is used when you want a chunk of text to follow the exact format of how it’s written in the HTML code.
The <progress> tag represents the completion progress of a task, and is used with a script to display the progress to the user.
The <q> tag defines a section of text that is quoted from another source and may need to stand out on its own to some extent.
The <rp> tag is optionally used to provide parentheses around a <ruby> annotation text (<rt>), to be shown by browsers that do not support ruby annotation.
A <ruby> annotations, used in East Asian typography, is text attached to the main text to indicate the pronunciation or meaning of the corresponding characters.
The <rt> tag is used in a <ruby> annotation, used in East Asian typography, to define the explanation or pronunciation of a set of the characters.
The <samp> tag is used to define sample output from a computer program and will typically display in the browser’s default monospace font.
The <script> tag is used to embed client-side scripts by linking to the script using the src attribute.
The <section> tag specifies a section in a document. There can be multiple sections on the same page.