<time>
element represents either a time on a 24-hour clock or a precise date in the Gregorian calendar (with optional time and timezone information).<track>
element is used as a child of the media elements—<audio>
and <video>
. It lets you specify timed text tracks (or time-based data), for example to automatically handle subtitles. The tracks are formatted in WebVTT format (.vtt
files) — Web Video Text Tracks.fillStyle
and strokeStyle
.clearRect()
method does) and more.<article>
element represents a self-contained composition in a document, page, application, or site, which is intended to be independently distributable or reusable (e.g., in syndication). This could be a forum post, a magazine or newspaper article, a blog entry, an object, or any other independent item of content. Each <article>
should be identified, typically by including a heading (<h1>
-<h6>
element) as a child of the <article>
element.<base>
element specifies the base URL to use for all relative URLs contained within a document. There can be only one <base>
element in a document. <blockquote>
Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite>
element.<details>
) is used as a disclosure widget from which the user can retrieve additional information.<dl>
element (or HTML Description List Element) encloses a list of pairs of terms and descriptions. Common uses for this element are to implement a glossary or to display metadata (a list of key-value pairs).<dt>
element (or HTML Definition Term Element) identifies a term in a definition list. This element can occur only as a child element of a <dl>
. It is usually followed by a <dd>
element; however, multiple <dt>
elements in a row indicate several terms that are all defined by the immediate next <dd>
element.