Misplaced Pages

HTML element: Difference between revisions

Article snapshot taken from Wikipedia with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.
Browse history interactively← Previous editContent deleted Content addedVisualWikitext
Revision as of 18:26, 3 June 2013 editPhunderMerwe (talk | contribs)62 edits Block elements: Description of a block-level element ans its components← Previous edit Latest revision as of 14:55, 21 December 2024 edit undoGonnym (talk | contribs)Autopatrolled, Extended confirmed users, Template editors224,817 edits Undid revision 1264224725 by 188.236.228.176 (talk)Tag: Undo 
Line 1: Line 1:
{{Short description|Individual component of an HTML document}}
{{Selfref|This article is about the ] elements in general. For information on how to format Misplaced Pages entries, see ] and ].}}
{{for|the usage of HTML on Misplaced Pages|Help:HTML in wikitext|selfref=y}}
<!-- {{verylong|date=November 2010}} It's a list article. It's as long as necessary to exhaust the subject. --->
{{Redirect|nobr|the chemical compound|NOBr}}
{{Redirect|Font color}}
{{Use American English|date=March 2018}}

{{Html series}} {{Html series}}


An '''HTML element''' is a type of ] (HyperText Markup Language) document component, one of several types of HTML nodes (there are also text nodes, comment nodes and others).{{Vague|date=February 2019}} The first used version of HTML was written by ] in 1993 and there have since been many versions of HTML. The current de facto standard is governed by the industry group ] and is known as the HTML Living Standard.
An '''<abbr title="Hyper Text Markup Language">HTML</abbr> element''' is an individual component of an ] document. HTML documents are composed of a ] of HTML elements and other ], such as text nodes. Each element can have ]s specified. Elements can also have content, including other elements and text. HTML elements represent ], or meaning. For example, the <code>title</code> element represents the title of the document.

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

==Concepts==
]

===Elements vs. tags===
As is generally understood, the position of an element is indicated as spanning from a start tag and is terminated by an end tag.<ref name="HTML401_Elements">{{Cite web
|at=§3.2.1 Elements
|title=§3 On SGML and HTML
|work=HTML 4.01 Specification
|date=24 December 1999
|url=http://www.w3.org/TR/1999/REC-html401-19991224/intro/sgmltut.html#h-3.2.1
|publisher=]
}}</ref> This is the case for many, but not all, elements within an HTML document. The distinction is explicitly emphasised in ''HTML 4.01 Specification'':
{{quote|'''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.<ref name="HTML401_Elements"/>}}
Similarly the W3C Recommendation '''''HTML 5.1 2nd Edition''''' explicitly says:
{{quote| source= |
'''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, (...) <br/> The contents of the element must be placed between just after the start tag (which <u>might be implied</u>, in certain cases) and just before the end tag (which again, <u>might be implied</u>, in certain cases). }}
and:
{{quote| source= |
Certain tags can be '''omitted'''. <br/> '''NOTE:'''<br/> 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 <kbd><nowiki><html></nowiki></kbd> element, even if the string <kbd><nowiki><html></nowiki></kbd> doesn't appear anywhere in the markup. }}


As HTML (before HTML5) is based on ],<ref>{{Cite web
|at=§3.1 Introduction to SGML
|title=§3 On SGML and HTML
|work=HTML 4.01 Specification
|date=24 December 1999
|url=http://www.w3.org/TR/1999/REC-html401-19991224/intro/sgmltut.html
|publisher=]
}}</ref> its parsing also depends on the ], specifically an HTML DTD (e.g. HTML 4.01<ref name="W3C, HTML 401 DTD" >{{Cite web
|title=HTML 4.01, §21, Document Type Definition
|date=24 December 1999
|url=http://www.w3.org/TR/1999/REC-html401-19991224/sgml/dtd.html
|publisher=]
}}</ref>{{refn|group=note|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.}}). 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 {{em|possible}} (per the DTD), its explicit statement in any given document is not generally required. As a simple example, the {{code|lang=html|code=<p>}} tag indicating the start of a paragraph element should be complemented by a {{code|lang=html|code=</p>}} tag indicating its end. But since the DTD states that paragraph elements cannot be nested, an HTML document fragment {{code|lang=html|code=<p>Para 1 <p>Para 2 <p>Para 3 }} is thus inferred to be equivalent to {{code|lang=html|code=<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 {{em|alone}} but only by using an SGML—or HTML—aware parser with knowledge of the DTD. ] creates a similar result by defining what tags can be omitted.<ref name=whatwg-syntax-tag-omission>{{cite web |title=HTML Standard § Optional tags |url=https://html.spec.whatwg.org/multipage/syntax.html#syntax-tag-omission |website=WHATWG |access-date=22 March 2019}}</ref>

===SGML vs. XML===
SGML is complex, which has limited its widespread understanding and adoption. ] 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.{{refn|group=note|A macro-like feature of DTDs may still be used within XML.}}

HTML as used on the current web is likely to be either treated as XML, by being ], or as ]; in either case the parsing of document tags into ] (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.{{refn|group=note|One minor difference is that XML, even after the DOM interface, is case-sensitive.<ref>{{Cite web
|at=§1.3. XHTML and the HTML DOM
|work=Document Object Model (DOM) Level 2 HTML Specification
|date=9 January 2003
|title=§1. Document Object Model HTML
|url=http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html#ID-5353782642
|publisher=]
}}</ref>}}

===<code>%block;</code> vs. box===
Part of this CSS presentation behavior is the notion of the "]". This is applied to those elements that CSS considers to be "block" elements, set through the CSS {{code|lang=css|code=display: block;}} declaration.

HTML also has a similar concept, although different, and the two are very frequently confused. <code>%block;</code> and <code>%inline;</code> are groups within the HTML DTD that group elements as being either "block-level" or "inline".<ref name="W3C, HTML 4.01, block and inline" >{{Cite web
|at=§7.5.3 Block-level and inline elements
|title=§7 The global structure of an HTML document
|work=HTML 4.01 Specification
|date=24 December 1999
|url=http://www.w3.org/TR/1999/REC-html401-19991224/struct/global.html#h-7.5.3
|publisher=]
}}</ref> This is used to define their nesting behavior: block-level elements cannot be placed into an inline context.{{refn|group=note|However, see {{code|lang=html|code=<object>}} for the inevitable exception.}} This behavior cannot be changed; it is fixed in the DTD. Block and ] have the appropriate and different ] behaviors attached to them by default,<ref name="W3C, HTML 4.01, block and inline" /> 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 {{code|lang=html|code=<ul><li> ...}} are <code>%block;</code> 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.<ref>{{Cite web
|title=CSS Design: Taming Lists
|author=Mark Newhouse
|date=27 September 2002
|url=http://alistapart.com/article/taminglists/
|publisher=]
}}</ref>

==Overview==

===Syntax===


{{Image frame|caption=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 ]. 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 <code>p</code> element, would be written as
|content=<math>
<syntaxhighlight lang="html4strict">
\overbrace{
\overbrace{\mathtt{\color{BrickRed}<\!p\ }\color{Magenta}\underbrace\mathtt{class}_\mathsf{\color{Black}{Attribute \atop name}}\mathtt{= ''}\!\underbrace\mathtt{paragraph}_\mathsf{\color{White}{Attr} \atop \color{Black}Attribute\ value}''\mathtt{\color{BrickRed}>}}^\mathsf{Start\ tag}
\overbrace\mathtt{\color{Green}This\ is\ a\ paragraph.}^\mathsf{Content}
\overbrace\mathtt{\color{BrickRed}<\!/p\!>}^\mathsf{End \atop tag}
}^\mathsf{Element}
</math>
}}
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 ]s. 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 {{tag|p|o}} element, would be written as:
<syntaxhighlight lang="html">
<p>In the HTML syntax, most elements are written ...</p> <p>In the HTML syntax, most elements are written ...</p>
</syntaxhighlight> </syntaxhighlight>
However, not all of these elements ''require'' the end tag, or even the start tag, to be present. <!--Examples will be given throughout the article when I get around to it. —Ms2ger--> Some elements, the so-called ''void elements'' don't have an end tag. A typical example is the <code>br</code> element, which represents a significant ], such as in a poem or an address. A void element's behavior is predefined, and it can not contain any content or other elements. For example, the address of the dentist in ] would be written as However, not all of these elements {{em|require}} the end tag, or even the start tag, to be present.<ref name=whatwg-syntax-tag-omission/> <!--Examples will be given throughout the article when I get around to it. —Ms2ger--> Some elements, the so-called '']'', do not have an end tag. A typical example is the {{tag|br|o}} (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:
<syntaxhighlight lang="html4strict"> <syntaxhighlight lang="html">
<p>P. Sherman<br>42 Wallaby Way<br>Sydney</p> <p>P. Sherman<br>42 Wallaby Way<br>Sydney</p>
</syntaxhighlight> </syntaxhighlight>
When using an ] ], you are required to open and close the element with a single tag. You indicate that it is a void element by including a "/" at the '''end''' of the tag (not to be confused with the "/" at the '''beginning''' of a closing tag). When using ], 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 <code>/</code> at the {{em|end}} of the tag (not to be confused with the <code>/</code> at the {{em|beginning}} of a closing tag).
<syntaxhighlight lang="html4strict"> <syntaxhighlight lang="html">
<p>P. Sherman<br/>42 Wallaby Way<br/>Sydney</p> <p>P. Sherman<br />42 Wallaby Way<br />Sydney</p>
</syntaxhighlight> </syntaxhighlight>


] are specified on the start tag. For example, the <code>abbr</code> element, which represents an ], expects a <code>title</code> attribute with its expansion. This would be written as ]s are specified inside the start tag. For example, the {{tag|abbr|o}} element, which represents an ], expects a <code>title</code> attribute within its opening tag. This would be written as:
<syntaxhighlight lang="html4strict"> <syntaxhighlight lang="html">
<abbr title="abbreviation">abbr.</abbr> <abbr title="abbreviation">abbr.</abbr>
</syntaxhighlight> </syntaxhighlight>


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


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.<ref name="XHTML10-42">] §4.2</ref> The canonical form was upper-case until ], and was used in HTML specifications, but in recent years, lower-case has become more common.
===Syntax===
[[File:HTML element structure.svg|frame|Parts of an HTML container element:
<ul>
<li>''Start tag:'' <code>&lt;p ... &gt;</code>
<ul>
<li>''Attribute:''
<ul>
<li>''name:'' <code>class</code></li>
<li>''value:'' <code>foo</code></li>
</ul>
</li>
</ul>
</li>
<li>''Content:'' <code>This is a paragraph.</code></li>
<li>''End tag:'' <code>&lt;/p&gt;</code></li>
</ul>
]]


==== Types of element ====
There are multiple kinds of ] elements: void elements, raw text elements, and normal elements. <!-- And RCDATA elements, but those are like raw text elements, but weirder. -->
There are three kinds of ] elements: normal elements, raw text elements, and void elements.


'''{{vanchor|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:
'''Void elements''' only have a start tag, which contains any ]. They may not contain any children, such as text or other elements. Often they are place holders for elements which reference external files, such as the image (<img/>) element. The attributes included in the element will then point to the external file in question.
* a ''start tag'' ({{tag|{{var|tag}}|o}}) marking the beginning of an element, which may incorporate any number of ]s;
Another example of a void element is the <code>link</code> element, for which the syntax is
* some amount of ''content'', including text and other elements;
<syntaxhighlight lang="html4strict">
* an ''end tag'', in which the element name is prefixed with a ]: {{tag|{{var|tag}}|c}}.
<link rel=stylesheet href=fancy.css type="text/css">

'''{{vanchor|Raw text elements}}''' (also known as text or text-only elements) are constructed with:
* a ''start tag'' (in the form {{tag|{{var|tag}}|o}}) 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|{{var|tag}}|c}}. In some versions of HTML, the end tag is optional for some elements. The end tag is required in ].
An example is the {{tag|title|o}} element, which must not contain other elements (including markup of text), only {{em|plain}} text.

'''{{Anchor|Empty element}}{{vanchor|Void elements}}''' (also sometimes called empty elements, single elements or stand-alone elements) only have a start tag (in the form {{tag|{{var|tag}}|o}}), which contains any HTML attributes. They may not contain any children, such as text or other elements. For compatibility with ], the HTML specification{{Which|date=August 2022}} allows an optional space and slash{{Citation needed|date=August 2022}} ({{tag|{{var|tag}}|s}} is permissible). The slash is required in ] and other ] applications. Two common void elements are {{tag|br|s}} (for a ], such as in a poem or an address) and {{tag|hr|s}} (for a thematic break). Other such elements are often place-holders which reference external files, such as the image ({{tag|img|s}}) element. The attributes included in the element will then point to the external file in question. Another example of a void element is {{tag|link|s}}, for which the syntax is:
<syntaxhighlight lang="html">
<link rel="stylesheet" href="fancy.css" type="text/css">
</syntaxhighlight> </syntaxhighlight>
This <code>link</code> element points the browser at a ] to use when presenting the HTML document to the user. Note that in the HTML syntax, attributes don't have to be quoted. When using the ] syntax (]), on the other hand, all attributes must be quoted, and a trailing ] is required before the last angle bracket: This {{tag|link|s}} element points the browser at 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 ] is required before the last angle bracket:
<syntaxhighlight lang="xml"> <syntaxhighlight lang="xml">
<link rel="stylesheet" href="fancy.css" type="text/css" /> <link rel="stylesheet" href="fancy.css" type="text/css" />
</syntaxhighlight> </syntaxhighlight>


==== Attributes ====
'''Raw text elements''' are constructed with:
''']s''' define desired behavior or indicate additional element properties. Most attributes require a ''value''. In HTML, the value can be left unquoted if it does not include spaces (<code>{{var|attribute}}={{var|value}}</code>), or it can be quoted with single or double quotes (<code>{{var|attribute}}='{{var|value}}'</code> or <code>{{var|attribute}}="{{var|value}}"</code>). In ], those quotes are required.
* a ''start tag'' (<code>&lt;tag&gt;</code>) marking the beginning of an element, which may incorporate any number of ];
* 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: <code>&lt;/tag&gt;</code>. In some versions of HTML, the end tag is optional for some elements. The end tag is required in ].
{{Examples|date=January 2012}}

'''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'' (<code>&lt;tag&gt;</code>) marking the beginning of an element, which may incorporate any number of ];
* some amount of ''content'', including text and other elements;
* an ''end tag'', in which the element name is prefixed with a ]: <code>&lt;/tag&gt;</code>.


] define desired behavior or indicate additional element properties. Most attributes require a ''value''. In HTML, the value can be left unquoted if it doesn't include spaces (<code>name=value</code>), or it can be quoted with single or double quotes (<code>name='value'</code> or <code>name="value"</code>). In XML, those quotes are required. ] attributes, on the other hand, don't require a value to be specified. An example is the <code>checked</code> for checkboxes: ] attributes, on the other hand, do not require a value to be specified. An example is the <code>checked</code> for checkboxes:
<syntaxhighlight lang="html4strict"> <syntaxhighlight lang="html">
<input type=checkbox checked> <input type=checkbox checked>
</syntaxhighlight> </syntaxhighlight>
In the XML syntax, though, the name should be repeated as the value: In the XML (and thus ]) syntax, though, a value is required, and the name should be repeated as the value:
<syntaxhighlight lang="xml"> <syntaxhighlight lang="xml">
<input type="checkbox" checked="checked" /> <input type="checkbox" checked="checked" />
</syntaxhighlight> </syntaxhighlight>

Informally, HTML elements are sometimes referred to as "tags" (an example of ]), 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 ].<ref name="XHTML10-42">] §4.2</ref> The canonical form was upper-case until ], and was used in HTML specifications, but in recent years, lower-case has become more common.


===Element standards=== ===Element standards===
Line 83: Line 152:
HTML elements are defined in a series of freely available open standards issued since 1995, initially by the ] and subsequently by the ]. HTML elements are defined in a series of freely available open standards issued since 1995, initially by the ] and subsequently by the ].


Since the early 1990s, developers of ]s (e.g. ]s) have 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 may be ignored or displayed improperly. During the ] of the 1990s, developers of ]s (e.g. ]s) 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.


In 1998, ] (a simplified form of SGML) introduced mechanisms to allow anyone to develop their own elements and incorporate them in ] documents, for use with XML-aware user agents.<ref>] (The ability to produce additional elements is part of the ''eXtensibility'' in the acronym.)</ref> In 1998, ] (a simplified form of SGML) introduced mechanisms to allow anyone to develop their own elements and incorporate them in ] documents, for use with XML-aware user agents.<ref>] (The ability to produce additional elements is part of the ''eXtensibility'' in the acronym.)</ref>


Subsequently, HTML 4.01 was rewritten in an ]-compatible form, ] (''eXtensible HTML''). The elements in each are identical, and in most cases valid ] 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 ]. ''(See ] for a discussion of the minor differences between the two).'' Subsequently, HTML 4.01 was rewritten in an ]-compatible form, ] (''eXtensible HTML''). 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 ] for a discussion of the minor differences between the two.


===Element status=== ===Element status===

Since the first version of HTML, several elements have become outmoded, and are '']'' in later standards, or do not appear at all, in which case they are ''invalid'' (and will be found invalid, and perhaps not displayed, by ] user agents).<ref name="XML10-51">] §5.1</ref> Since the first version of HTML, several elements have become outmoded, and are '']'' in later standards, or do not appear at all, in which case they are ''invalid'' (and will be found invalid, and perhaps not displayed, by ] user agents).<ref name="XML10-51">] §5.1</ref>


At present, the status of elements is complicated by the existence of three types of ] / ] ]: In ] / ], the status of elements is complicated by the existence of three types of ]:

* '''Transitional''', which contain deprecated elements, but which were intended to provide a transitional period during which authors could update their practices; * '''Transitional''', which contain deprecated elements, but which were intended to provide a transitional period during which authors could update their practices;
* '''Frameset''', which are versions of the Transitional DTDs which also allow authors to write '''frameset''' documents; * '''Frameset''', which are versions of the Transitional DTDs which also allow authors to write '''frameset''' documents;
* '''Strict''', which is the up-to date (as at 1999) form of HTML. * '''Strict''', which is the up-to-date (as at 1999) form of HTML.


HTML5 instead provides a listing of '''obsolete''' features to go along with the '''standardized''' normative content. They are broken down into "obsolete but conforming" for which implementation instructions exist and "non-conforming" ones that should be replaced.<ref>]. § 15</ref>
The first Standard (]) contained four deprecated elements, one of which was invalid in ]. All four are invalid in ], which also deprecated a further ten elements. All of these, plus two others, are invalid in ]. 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.

The first Standard (]) contained four deprecated elements, one of which was invalid in ]. All four are invalid in ], which also deprecated a further ten elements. All of these, plus two others, are invalid in ]. 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.


(Strictly speaking, the most recent ''XHTML'' standard, ] (2001), does not include frames at all; it is approximately equivalent to ], but also includes the ''']''' module.)<ref name="XHTML11">] §A</ref> (Strictly speaking, the most recent ''XHTML'' standard, ] (2001), does not include frames at all; it is approximately equivalent to ], but also includes the ''']''' module.)<ref name="XHTML11">] §A</ref>


A common source of confusion is the loose use of ''deprecated'' to refer to both deprecated and invalid status, and to elements which are expected to be formally deprecated in future. A common source of confusion is the loose use of ''deprecated'' to refer to both deprecated and invalid status, and to elements that are expected to be formally deprecated in the future.


===Presentation and behavior=== ===Content vs. presentation and behavior===


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).<ref>{{Cite web
In keeping with the principle of ], the function of HTML is primarily to add structural and ] information to the raw text of a document. ''Presentation'' and '']'' are separate functions, which can be added as desired, ideally through links to external documents such as ], ] files, and ].
|title=HTML & CSS
|url=http://www.w3.org/standards/webdesign/htmlcss
|year=2013
|publisher=]
}}</ref> This is often referred to as a ]. HTML is used to represent the structure or content of a document, its presentation remains the sole responsibility of ] style sheets. A default ] is suggested as part of the CSS standard, giving a default rendering for HTML.<ref>{{Cite web
|title=Appendix D. Default style sheet for HTML 4
|work=Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification
|date=7 June 2011
|url=http://www.w3.org/TR/CSS2/sample.html
|publisher=]
}}</ref>


Behavior (interactivity) is also kept separate from content, and is handled by ]. Images are contained in separate ] files, separate from text, though they can also be considered part of the content of a page.
This 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 stylesheet to present a document by displaying on a monitor, printing on paper, or to determine speech characteristics in an aural user agent. The structural and semantic functions of the markup remain identical in each case.


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.
Historically, user agents did not always support these features. In the 1990s, as a stop-gap, presentational elements 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 stylesheet-based design; most presentational elements are now deprecated.<ref name="HTML401-141">] §14.1</ref>


Historically, user agents did not always support these features. In the 1990s, as a stop-gap, presentational elements (like {{tag|b|o}} and {{tag|i|o}}) 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.<ref name="HTML401-141">] §14.1</ref>
External image files are incorporated with the '''img''' or '''object''' elements. (With ], the ] language can also be used to write graphics within the document, though linking to external SVG files is generally simpler.)<ref name="SVG11-23">{{cite web

| author = Ferraiolo, J. Fujisawa, J, and Jackson, D (editors)
External image files are incorporated with the {{tag|img|s}} or {{tag|object|s}} elements. (With ], the ] language can also be used to write graphics within the document, though linking to external SVG files is generally simpler.)<ref name="SVG11-23">{{cite web |editor-last1=Ferraiolo |editor-first1=J. |editor-last2=Fujisawa |editor-first2=J. |editor-last3=Jackson |editor-first3=D. |work=Scalable Vector Graphics (SVG) 1.1 Specification |title=§2.3 Options for using SVG in Web pages |publisher=] |date=2003-01-14 |url= http://www.w3.org/TR/2003/REC-SVG11-20030114/ |access-date=2009-03-25}}</ref> Where an image is not purely decorative, HTML allows replacement content with similar semantic value to be provided for non-visual user agents.
| title = Scalable Vector Graphics (SVG) 1.1 Specification, §2.3 ''Options for using SVG in Web pages''
| publisher = ]
| date = 2003-01-14
| url = http://www.w3.org/TR/2003/REC-SVG11-20030114/
| accessdate = 2009-03-25}}</ref> Where an image is not purely decorative, HTML allows replacement content with similar semantic value to be provided for non-visual user agents.


An HTML document can also be extended through the use of scripts to provide additional behaviors beyond the abilities of HTML hyperlinks and forms. An HTML document can also be extended through the use of scripts to provide additional behaviors beyond the abilities of HTML hyperlinks and forms.


The elements '''style''' and '''script''', with related ], provide reference points in HTML markup for links to stylesheets and scripts. They can also contain instructions directly. The elements {{tag|style|o}} and {{tag|script|o}}, with related ], provide style sheets and scripts.
* In the document head, '''script''' and '''style''' may either link to shared external documents, or contain embedded instructions. (The '''link''' element can also be used to link stylesheets.) * In the document head, {{tag|style|s}} and {{tag|script|s}} may link to shared external documents, or {{tag|style}} and {{tag|script}} may contain embedded instructions. (The {{tag|link|o}} element can also be used to link style sheets.)
* {{tag|script|s}} or {{tag|script}} can occur at any point in the document (head or body).
* The ''style attribute'' is valid in most document body elements for inclusion of ''inline style'' instructions.
* The <code>style</code> attribute is valid in most document body elements (e.g. {{tag|div|o|attribs=style="..."}}) for inclusion of ''inline style'' instructions.
* ''Event-handling attributes'', which provide links to scripts, are optional in most elements. * ''Event-handling attributes'', which provide links to scripts, are optional in most elements.
* For user agents which do not operate scripts, the {{tag|noscript}} 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.
* '''script''' can occur at any point in the document body.
* For user agents which do not operate scripts, the '''noscript''' element provides alternative content where appropriate; however, it can only be used as a block-level element.

===List of all HTML elements===
{| class="wikitable"
|-
! Tag !! Description
|-
| &lt;!--...--&gt; || Defines a comment
|-
| &lt;!DOCTYPE&gt; || Defines the document type
|-
| &lt;a&gt; || Defines a hyperlink
|-
| &lt;abbr&gt; || Defines an abbreviation
|-
| &lt;acronym&gt; || Not supported in HTML5. Defines an acronym
|-
| &lt;address&gt; || Defines contact information for the author/owner of a document
|-
| &lt;applet&gt; || Not supported in HTML5. Deprecated in HTML 4.01. Defines an embedded applet
|-
| &lt;area&gt; || Defines an area inside an image-map
|-
| &lt;article&gt; || Defines an article
|-
| &lt;aside&gt; || Defines content aside from the page content
|-
| &lt;audio&gt; || Defines sound content
|-
| &lt;b&gt; || Defines bold text
|-
| &lt;base&gt; || Specifies the base URL/target for all relative URLs in a document
|-
| &lt;basefont&gt; || Not supported in HTML5. Deprecated in HTML 4.01. Specifies a default color, size, and font for all text in a document
|-
| &lt;bdi&gt; || Isolates a part of text that might be formatted in a different direction from other text outside it
|-
| &lt;bdo&gt; || Overrides the current text direction
|-
| &lt;big&gt; || Not supported in HTML5. Defines big text
|-
| &lt;blockquote&gt; || Defines a section that is quoted from another source
|-
| &lt;body&gt; || Defines the document's body
|-
| &lt;br&gt; || Defines a single line break
|-
| &lt;canvas&gt; || Used to draw graphics, on the fly, via scripting (usually JavaScript)
|-
| &lt;caption&gt; || Defines a table caption
|-
| &lt;center&gt; || Not supported in HTML5. Deprecated in HTML 4.01. Defines centered text
|-
| &lt;cite&gt; || Defines the title of a work
|-
| &lt;code&gt; || Defines a piece of computer code
|-
| &lt;col&gt; || Specifies column properties for each column within a &lt;colgroup&gt; element&nbsp;
|-
| &lt;colgroup&gt; || Specifies a group of one or more columns in a table for formatting
|-
| &lt;command&gt; || Defines a command button that a user can invoke
|-
| &lt;datalist&gt; || Specifies a list of pre-defined options for input controls
|-
| &lt;dd&gt; || Defines a description of an item in a definition list
|-
| &lt;del&gt; || Defines text that has been deleted from a document
|-
| &lt;details&gt; || Defines additional details that the user can view or hide
|-
| &lt;dfn&gt; || Defines&nbsp;a definition term
|-
| &lt;dialog&gt; || Defines a dialog box or window
|-
| &lt;dir&gt; || Not supported in HTML5. Deprecated in HTML 4.01. Defines a directory list
|-
| &lt;div&gt; || Defines a section in a document
|-
| &lt;dl&gt; || Defines a definition list
|-
| &lt;dt&gt; || Defines a term (an item) in a definition list
|-
| &lt;em&gt; || Defines emphasized text&nbsp;
|-
| &lt;embed&gt; || Defines a container for an external (non-HTML) application
|-
| &lt;fieldset&gt; || Groups related elements in a form
|-
| &lt;figcaption&gt; || Defines a caption for a &lt;figure&gt; element
|-
| &lt;figure&gt; || Specifies self-contained content
|-
| &lt;font&gt; || Not supported in HTML5. Deprecated in HTML 4.01. Defines font, color, and size for text
|-
| &lt;footer&gt; || Defines a footer for a document or section
|-
| &lt;form&gt; || Defines an HTML form for user input
|-
| &lt;frame&gt; || Not supported in HTML5. Defines a window (a frame) in a frameset
|-
| &lt;frameset&gt; || Not supported in HTML5. Defines a set of frames
|-
| &lt;h1&gt; to &lt;h6&gt; || Defines HTML headings
|-
| &lt;head&gt; || Defines information about the document
|-
| &lt;header&gt; || Defines a header for a document or section
|-
| &lt;hgroup&gt; || Groups heading (&lt;h1&gt; to &lt;h6&gt;) elements
|-
| &lt;hr&gt; || Defines a thematic change in the content
|-
| &lt;html&gt; || Defines the root of an HTML document
|-
| &lt;i&gt; || Defines a part of text in an alternate voice or mood
|-
| &lt;iframe&gt; || Defines an inline frame
|-
| &lt;img&gt; || Defines an image
|-
| &lt;input&gt; || Defines an input control
|-
| &lt;ins&gt; || Defines a text that has been inserted into a document
|-
| &lt;kbd&gt; || Defines keyboard input
|-
| &lt;keygen&gt; || Defines a key-pair generator field (for forms)
|-
| &lt;label&gt; || Defines a label&nbsp;for an &lt;input&gt; element
|-
| &lt;legend&gt; || Defines a caption for a &lt;fieldset&gt;, &lt; figure&gt;, or &lt;details&gt; element
|-
| &lt;li&gt; || Defines a list item
|-
| &lt;link&gt; || Defines the relationship between a document and an external resource (most used to link to style sheets)
|-
| &lt;map&gt; || Defines a client-side image-map
|-
| &lt;mark&gt; || Defines marked/highlighted text
|-
| &lt;menu&gt; || Defines a list/menu of commands
|-
| &lt;meta&gt; || Defines metadata about an HTML document
|-
| &lt;meter&gt; || Defines a scalar measurement within a known range (a gauge)
|-
| &lt;nav&gt; || Defines navigation links
|-
| &lt;noframes&gt; || Not supported in HTML5. Defines an alternate content for users that do not support frames
|-
| &lt;noscript&gt; || Defines an alternate content for users that do not support client-side scripts
|-
| &lt;object&gt; || Defines an embedded object
|-
| &lt;ol&gt; || Defines an ordered list
|-
| &lt;optgroup&gt; || Defines a group of related options in a drop-down list
|-
| &lt;option&gt; || Defines an option in a drop-down list
|-
| &lt;output&gt; || Defines the result of a calculation
|-
| &lt;p&gt; || Defines a paragraph
|-
| &lt;param&gt; || Defines a parameter for an object
|-
| &lt;pre&gt; || Defines preformatted text
|-
| &lt;progress&gt; || Represents the progress of a task
|-
| &lt;q&gt; || Defines a short quotation
|-
| &lt;rp&gt; || Defines what to show in browsers that do not support ruby annotations
|-
| &lt;rt&gt; || Defines an explanation/pronunciation of characters (for East Asian typography)
|-
| &lt;ruby&gt; || Defines a ruby annotation (for East Asian typography)
|-
| &lt;s&gt; || Defines text that is no longer correct
|-
| &lt;samp&gt; || Defines sample output from a computer program
|-
| &lt;script&gt; || Defines a client-side script
|-
| &lt;section&gt; || Defines a section in a document
|-
| &lt;select&gt; || Defines a drop-down list
|-
| &lt;small&gt; || Defines smaller text
|-
| &lt;source&gt; || Defines multiple media resources for media elements (&lt;video&gt; and &lt;audio&gt;)
|-
| &lt;span&gt; || Defines a section in a document
|-
| &lt;strike&gt; || Not supported in HTML5. Deprecated in HTML 4.01. Defines strikethrough text
|-
| &lt;strong&gt; || Defines important text
|-
| &lt;style&gt; || Defines style information for a document
|-
| &lt;sub&gt; || Defines subscripted text
|-
| &lt;summary&gt; || Defines a visible heading for a &lt;details&gt; element
|-
| &lt;sup&gt; || Defines superscripted text
|-
| &lt;table&gt; || Defines a table
|-
| &lt;tbody&gt; || Groups the body content in a table
|-
| &lt;td&gt; || Defines a cell in a table
|-
| &lt;textarea&gt; || Defines a multiline input control (text area)
|-
| &lt;tfoot&gt; || Groups the footer content in a table
|-
| &lt;th&gt; || Defines a header cell in a table
|-
| &lt;thead&gt; || Groups the header content in a table
|-
| &lt;time&gt; || Defines a date/time
|-
| &lt;title&gt; || Defines a title for the document
|-
| &lt;tr&gt; || Defines a row in a table
|-
| &lt;track&gt; || Defines text tracks for media elements (&lt;video&gt; and &lt;audio&gt;)
|-
| &lt;tt&gt; || Not supported in HTML5. Defines teletype text
|-
| &lt;u&gt; || Defines text that should be stylistically different from normal text
|-
| &lt;ul&gt; || Defines an unordered list
|-
| &lt;var&gt; || Defines a variable
|-
| &lt;video&gt; || Defines a video or movie
|-
| &lt;wbr&gt; || Defines a possible line-break
|}
Source: w3schools.com<ref>http://www.w3schools.com/tags/default.asp</ref>


==Document structure elements== ==Document structure elements==


{{glossary}}
{{Anchor|html|html_tag}}{{XMLElement|html|HTML|...}}
{{term|term=html |content= {{XMLElement|html|HTML}} }}
:The ] of an ] document; all other elements are contained in this.
:The HTML element delimits the beginning and the end of an HTML document. {{defn|1= The ] of an ] document; all other elements are contained in this. The HTML element delimits the beginning and the end of an HTML document.}}
{{defn|1= Both the start and end tags may be omitted (HTML5).<ref name=whatwg-syntax-tag-omission/>}}
:'''Standardized''' in ]; still current.
{{defn|1= '''Standardized''' in ]; still current.}}


{{Anchor|head|head_tag}}{{XMLElement|head|Head|...}} {{term|term=head |content= {{XMLElement|head|Head}} }}
{{defn|1= {{ghat|(See ] for child elements.)}}
:Container for processing information and metadata for an HTML document.
Container for processing information and metadata for an HTML document.
:'''Standardized''' in ]; still current.
}}
:(See ] for child elements.)
{{defn|1= Both the start and end tags may be omitted and inferred from child elements (HTML5).<ref name=whatwg-syntax-tag-omission/>}}
{{defn|1= '''Standardized''' in ]; still current.}}


{{Anchor|body|body_tag}}{{XMLElement|body|Body|...}} {{term|term=body |content= {{XMLElement|body|Body|}} }}
{{defn|1= {{ghat|(See ] for child elements.)}}
:Container for the displayable content of an HTML document.
Container for the displayable content of an HTML document.
:'''Standardized''' in ]; still current.
}}
:(See ] for child elements.)
{{defn|1= Both the start and end tags may be omitted and inferred from child elements (HTML5).<ref name=whatwg-syntax-tag-omission/>}}
{{defn|1= '''Standardized''' in ]; still current.}}
{{glossary end}}


==Document head elements== ==Document head elements==


{{glossary}}
{{Anchor|base|base_tag}}{{HTMLElement|base|Base||end=no}}
{{term|term=base |content= {{XMLElement|base|Base|end=no}} }}
:Specifies a '''base ]''' 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>base</code> element for each document. The <code>base</code> element has ], but no contents.
{{defn|1= Specifies a '''base URL''' 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 {{tag|base|o}} element for each document. This element has ], but no contents.}}
:A development version of '''BASE''' is mentioned in '']''; '''standardized''' in ]; still current.
{{defn|1= A development version of this element (as <code>BASE</code>) is mentioned in '']''; '''standardized''' in ]; still current.}}


{{Anchor|basefont|basefont_tag}}{{HTMLElement|basefont|Basefont||end=no|deprecated=1}} {{term|term=basefont |content= {{XMLElement|basefont|Base Font|deprecated=1|end=no}} }}
:Specifies a base font size, typeface, and color for the document. Used together with <code>font</code> elements. ] in favor of ]. {{defn|1= Specifies a base font size, typeface, and color for the document. Used together with {{tag|font|o}} elements. ] in favor of ].}}
:'''Standardized''' in ]; '''deprecated''' in ]; '''invalid''' in ]. {{defn|1= '''Standardized''' in ]; '''deprecated''' in ]; '''invalid''' in ].}}


{{Anchor|isindex|isindex_tag}}{{HTMLElement|isindex|Index|end=no|deprecated=1}} {{term|term=isindex |content= {{XMLElement|isindex|Index|...|end=no|deprecated=1}} }}
:'''<code>isindex</code>''' could either appear in the document head or in the body, but only once in a document. See ]. {{defn|1= {{code|lang=html|code=<isindex>}} could either appear in the document head or in the body, but only once in a document. See ].}}


{{Anchor|link|link_tag}}{{HTMLElement|link|Link|end=no}} {{term|term=link |content= {{XMLElement|link|Link|end=no}} }}
{{defn|1= Specifies links to other documents, such as ''previous'' and ''next'' links, or alternate versions.<ref>] §12.3</ref> A common use is to link to external ], using the form, {{code|lang=html|code=<link rel="stylesheet" type="text/css" href="url" title="description_of_style">}}.<ref>] §14.3.2</ref>
{{see also|Link relations}}
:Specifies links to other documents, such as ''previous'' and ''next'' links, or alternate versions.<ref>] §12.3</ref> A common use is to link to external ]s, using the form:
::<code>&lt;link rel="stylesheet" type="text/css" href="''url''" title="''description_of_style''"&gt;</code><ref>] §14.3.2</ref>
:A less-common, but important, usage is to supply navigation hints consistently through use of ]s. Several common relationships are defined, that may be exposed to users through the browser interface rather than directly in the web page.
::<code>&lt;link rel="next" href="''url''"&gt;</code>
:A document's <code>head</code> element may contain any number of <code>link</code> elements. The <code>link</code> element has ], but no contents.
:'''LINK''' existed in '']'', and was '''standardized''' in ]; still current.


A less-common, but important, usage is to supply navigation hints consistently through use of ]s. 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|lang=html|code=<link rel="next" href="url">}}.
{{Anchor|meta|meta_tag}}]
{{Main|Meta element}}
:Can be used to specify additional ] about a document, such as its author, publication date, expiration date, page description, keywords, or other information not provided through the other header elements and ]. Because of their generic nature, <code>meta</code> elements specify associative ]. 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'' meta'' element is defined by its attributes.
:In one form, <code>meta</code> elements can specify ] headers which should be sent by a ] before the actual content, for example:
::<code>&lt;meta http-equiv="foo" content="bar"&gt;</code>
:&mdash; this specifies that the page should be served with an HTTP header called <code>foo</code> that has a value <code>bar</code>.
:In the general form, a <code>meta</code> element specifies <code>name</code> and associated <code>content</code> ] 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:
::<code>&lt;meta name="foo" content="bar" scheme="DC"&gt;</code>
:In this example, the <code>meta</code> element identifies itself as containing the <code>foo</code> element, with a value of <code>bar</code>, from the DC or ] ].
:'''Standardized''' in ]; still current.


A document's {{tag|head|o}} element may contain any number of {{tag|link|s}} elements. This element has ], but no contents.
{{Anchor|object}}{{XMLElement|object|Object|...}}
}}
:Used for including generic objects within the document header. Though rarely used within a <code>head</code> element, it could potentially be used to extract foreign data and associate it with the current document.
:'''Standardized''' in ]; still current. {{defn|1= <code>LINK</code> existed in '']'', and was '''standardized''' in ]; still current.}}


{{Anchor|script|script_tag}}{{XMLElement|script|Script|...}} {{term|term=meta |content= {{XMLElement|meta|Meta|end=no}} }}
{{defn|1= {{Main|Meta element}}
:Can act as a container for script instructions or link to an external script with the optional <code>src</code> attribute.<ref>] §18</ref> Also usable in the document body to dynamically generate either both block or inline content.
Can be used to specify additional ] 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 ]. Because of their generic nature, {{tag|meta|s}} elements specify associative ]. 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 {{tag|meta|s}} element is defined by its attributes. Outside of ], it is often given without the slash ({{tag|meta|o}}), despite being a ].
:'''Standardized''' in ]; still current.


In one form, {{tag|meta|s}} elements can specify ] headers which should be sent by a ] before the actual content. For example, {{code|lang=html|code=<meta http-equiv="foo" content="bar" />}} specifies that the page should be served with an HTTP header called <code>foo</code> that has a value <code>bar</code>.
{{Anchor|style|style_tag}}{{XMLElement|style|Style|...}}
:Specifies a ] for the document, usually in the form:
::<code>&lt;style type="text/css"&gt; ... &lt;/style&gt;</code>
:Can either act as a container for style instructions or link to external stylesheets – for example, in ], with <code>@import</code> directives of the form:
::<code>&lt;style&gt; @import ''url''; &lt;/style&gt;</code><ref>] §1.1</ref>
:'''Standardized''' in ]; still current.


In the general form, a {{tag|meta|s}} 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|lang=html|code=<meta name="foo" content="bar" scheme="DC" />}} the {{tag|meta|s}} element identifies itself as containing the <code>foo</code> element, with a value of <code>bar</code>, from the DC or ] ].
{{Anchor|title|title_tag}}{{XMLElement|title|Title|...}}
}}
:Define a document title. Required in every ] and ] document. User agents may use the title in different ways. For example:
{{defn|1= '''Standardized''' in ]; still current.}}
:* Web browsers usually display it in a window's ] when the window is open, and (where applicable) in the ] when the window is minimized.

:* It may become the default filename when saving the page.
{{term|term=object |content= {{XMLElement|object|Object}} }}
:* ]s&rsquo; ]s may pay particular attention to the words used in the title.
{{defn|1= Used for including generic objects within the document header. Though rarely used within a {{tag|head|o}} element, it could potentially be used to extract foreign data and associate it with the current document.}}
:The <code>title</code> element must not contain other elements, only text. Only one <code>title</code> element is permitted in a document.
:'''TITLE''' existed in '']'', and was '''standardized''' in ]; still current. {{defn|1= '''Standardized''' in ]; still current.}}

{{term|term=script |content= {{XMLElement|script|Script}} }}
{{defn|1= Can act as a container for script instructions or link to an external script with the optional <code>src</code> attribute.<ref>] §18</ref> Also usable in the document body to dynamically generate either both block or inline content.}}
{{defn|1= '''Standardized''' in ]; still current.}}

{{term|term=style |content= {{XMLElement|style|Style}} }}
{{defn|1= Specifies a ] for the document, usually in the form, {{code|lang=html|code=<style type="text/css"> ... </style>}}.
Can either act as a container for style instructions or link to external style sheets – for example, in ], with <code>@import</code> directives of the form,<ref>] §1.1</ref> {{code|lang=html|code=<style> @import url; </style>}}
}}
{{defn|1= '''Standardized''' in ]; still current.}}

{{term|term=title |content= {{XMLElement|title|Title}} }}
{{defn|1= This tag defines a document title. Required in every ] and ] document. User agents may use the title in different ways. For example:
* Web browsers usually display it in a window's ] when the window is open, and (where applicable) in the ] when the window is minimized.
* It may become the default file-name when saving the page.
* We can use <title> 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).
* ]s' ]s may pay particular attention to the words used in the title.
The {{tag|title|o}} element must not contain other elements, only text. Only one {{tag|title|o}} element is permitted in a document.
}}
{{defn|1= Existed in '']'', and was '''standardized''' in ]; still current.}}
{{glossary end}}


==Document body elements== ==Document body elements==


In visual browsers, displayable elements can be rendered as either ''block'' or ''inline''. While all elements are part of the document sequence, block elements appear within their parent elements: In visual browsers, displayable elements can be rendered as either ''block'' or ''inline''. While all elements are part of the document sequence, block elements appear within their parent elements:
* as rectangular objects which do not break across lines; * as rectangular objects which do not break across lines;
* with block margins, width and height properties which can be set independently of the surrounding elements. * with block margins, width, and height properties which can be set independently of the surrounding elements.
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. 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.


===Block elements=== ===Block elements===


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. 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.


The rectangular structure of a block element is often referred to a the ], and is made up of several parts. Each element contains the following: The rectangular structure of a block element is often referred to as the ], and is made up of several parts. Each element contains the following:
* The '''content''' of an element is the actual text (or other media) placed between the opening and closing tags of an element.
* The '''padding''' 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.
* The '''border''' 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.
* The '''margin''' 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 ] placement. Using most standard ], 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.


The above section refers only to the detailed implementation of CSS rendering and has no relevance to HTML elements themselves.
*The '''content''' of an element is the actual text (or other media) placed between the opening and closing tags of an element.
*The '''padding''' of an element is the space around that content, which still form part of said element. Padding is physically part of an element, and 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 space this element will take up.
*The '''border''' of an element is the absolute end of an element, and spans the circumference of that element. The thickness of a border increases the size of an element.
*The '''margin''' 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 ] placement. Using most standard ]s, 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 inter mingle. This means that the white-space between these elements will be as big as the larger margin between them.


====Basic text==== ====Basic text====


{{glossary}}
{{Anchor|p|p_tag}}{{XMLElement|p|Paragraph|...}}
{{term|term=p |content= {{XMLElement|p|Paragraph}} }}
:Creates a paragraph, perhaps the most common block level element.
{{defn|1= Creates a paragraph, perhaps the most common block level element.}}
:<code>P</code> existed in '']'', and was '''standardized''' in ]; still current.
{{defn|<code>P</code> existed in '']'', and was '''standardized''' in ]; still current.}}


{{Anchor|h1|h1_tag}}{{XMLElement|h1|Primary Headline|...}} {{term|term=h1 |content= {{XMLElement|h1|Level 1 heading}} {{anchor|heading}} }}
{{Anchor|h2|h2_tag}}{{XMLElement|h2|Secondary Headline|...}} {{term|term=h2 |content= {{XMLElement|h2|Level 2 heading}} |multi=y}}
{{Anchor|h3|h3_tag}}{{XMLElement|h3|Third Level Headline|...}} {{term|term=h3 |content= {{XMLElement|h3|Level 3 heading}} |multi=y}}
{{Anchor|h4|h4_tag}}{{XMLElement|h4|4. Level Headline|...}} {{term|term=h4 |content= {{XMLElement|h4|Level 4 heading}} |multi=y}}
{{Anchor|h5|h5_tag}}{{XMLElement|h5|5. Level Headline|...}} {{term|term=h5 |content= {{XMLElement|h5|Level 5 heading}} |multi=y}}
{{Anchor|h6|h6_tag}}{{XMLElement|h6|6. Level Headline|...}} {{term|term=h6 |content= {{XMLElement|h6|Level 6 heading}} |multi=y}}
:Section headings at different levels. <code>&lt;h1&gt;</code> delimits the highest-level heading, <code>&lt;h2&gt;</code> the next level down (sub-section), <code>&lt;h3&gt;</code> for a level below that, and so on to <code>&lt;h6&gt;</code>. They are sometimes referred to collectively as <code>&lt;h''n''&gt;</code> tags, ''n'' meaning any of the available heading levels.
:Most visual browsers show headings as large bold text by default, though this can be overridden with ]. Heading elements are not intended merely for creating large or bold text&mdash;in fact, they should ''not'' be used for explicitly styling text. Rather, they describe the document&rsquo;s structure and organization. Some programs use them to generate outlines and tables of contents.
:Headings existed in '']'', and were '''standardized''' in ]; still current.


{{defn|1= 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''n''</code> tags, ''n'' meaning any of the available heading levels.
====Lists====


Most visual browsers show headings as large bold text by default, though this can be overridden with ]. Heading elements are not intended merely for creating large or bold text – in fact, they should {{em|not}} 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.
{{Anchor|dl|dl_tag}}{{XMLElement|dl|Definition List|...}}
}}
:An association list consisting of name-value groups<ref name="W3C-5-DL">{{cite web|url=http://www.w3.org/TR/html5/grouping-content.html#the-dl-element|title=4.5 Grouping content — HTML5|work=]|accessdate=22 May 2013}}</ref> (previously to HTML5 defined as a definition list; consisting of definition terms paired with definitions).
:<code>DL</code> existed in '']'', and was '''standardized''' in ]; still current. {{defn|Headings existed in '']'', and were '''standardized''' in ]; still current.}}
{{glossary end}}


==== Lists ====
{{Anchor|dt|dt_tag}}{{XMLElement|dt|Definition Term|...}}
{{glossary}}
:A name in an association list (previously definition term in a definition list).
{{term|term=dl |content= {{XMLElement|dl|Definition List}} }}
:<code>DT</code> existed in '']'', and was '''standardized''' in ]; still current.
{{defn|1= {{redirect|Definition list|Misplaced Pages's article on lists of definitions|Glossary}}
A description list (a.k.a. ] or definition list) consists of name–value groups,<ref name="W3C-5-DL">{{cite web |url=http://www.w3.org/TR/html5/grouping-content.html#the-dl-element |title=4.4 Grouping content – HTML5 |work=HTML5: A vocabulary and associated APIs for HTML and XHTML – W3C Recommendation |publisher=] |at=§4.4.8 The dl element |date=28 October 2014 |access-date=16 August 2015}}</ref> and was known as a definition list prior to HTML5.<ref>{{cite web |url=http://www.w3.org/TR/html4/struct/lists.html#edef-DL |title=Lists in HTML documents |at=§10.3 Definition lists: the DL, DT, and DD elements |work=HTML 4.01 Specification – W3C Recommendation |date=24 December 1999 |publisher=World Wide Web Consortium |access-date=2 May 2015 }}</ref> 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".<ref>{{cite web |website=]|title=HTML5: A Vocabulary and Associated APIs for HTML and XHTML, W3C Working Draft|date=5 April 2011|url=http://www.w3.org/TR/2011/WD-html5-20110405/grouping-content.html#the-dl-element}}.</ref>
}}
{{defn|<code>DL</code> existed in '']'', and was '''standardized''' in ]; still current.}}


{{Anchor|dd|dd_tag}}{{XMLElement|dd|Definition|...}} {{term|term=dt |content= {{XMLElement|dt|Definition Term}} }}
:The value in an association list (previously definition of a term, in a definition list). {{defn|1= A name in a description list (previously definition term in a definition list).}}
:<code>DD</code> existed in '']'', and was '''standardized''' in ]; still current. {{defn|<code>DT</code> existed in '']'', and was '''standardized''' in ]; still current.}}


{{Anchor|ol|ol_tag}}{{XMLElement|ol|Ordered List|...}} {{term|term=dd |content= {{XMLElement|dd|Definition}} }}
{{defn|1= A value in a description list (previously definition data in a definition list).}}
:An ordered (enumerated) list. The <code>type</code> attribute can be used to specify the kind of ordering, but stylesheets give more control: <code>{list-style-type: ''foo''}</code>. The default is Arabic numbering.
:<code>OL</code> existed in '']'', and was '''standardized''' in ]; still current. {{defn|<code>DD</code> existed in '']'', and was '''standardized''' in ]; still current.}}


{{Anchor|ul|ul_tag}}{{XMLElement|ul|Unordered List|...}} {{term|term=ol |content= {{XMLElement|ol|Ordered List}} }}
:An unordered (bulleted) list. Stylesheets can be used to specify the list marker: <code>{list-style-type: foo}</code>. The default marker is a disc. {{defn|1= 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: {{nobr|{{code|lang=html|code=<ol type="foo">}}}}; or in a CSS declaration: {{nobr|{{code|lang=css|code=ol { list-style-type: foo; } }}}} – replacing <code><var>foo</var></code> with one of the following:
* A, B, C&nbsp;... – HTML value: <code>A</code>; CSS value: <code>upper-alpha</code>
:<code>UL</code> existed in '']'', and was '''standardized''' in ]; still current.
* a, b, c&nbsp;... – HTML value: <code>a</code>; CSS value: <code>lower-alpha</code>
* I, II, III&nbsp;... – HTML value: <code>I</code>; CSS value: <code>upper-roman</code>
* i, ii, iii&nbsp;... – HTML value: <code>i</code>; CSS value: <code>lower-roman</code>
* 1, 2, 3&nbsp;... – HTML value: <code>1</code>; <code>decimal</code>
CSS provides several other options not available as pure-HTML markup, including <code>none</code>, and options for ], Hebrew, Georgian, and Armenian script. The attribute is deprecated in HTML 3.2 and 4.01, but not in HTML 5.
}}
{{defn|<code>OL</code> existed in '']'', and was '''standardized''' in ]; still current.}}


{{Anchor|li|li_tag}}{{XMLElement|li|List Item|...}} {{term|term=ul |content= {{XMLElement|ul|Unordered List}} }}
{{defn|1= An unordered (bulleted) list. The type of list item marker can be specified in an HTML attribute: {{nobr|{{code|lang=html|code=<ul type="foo">}}}}; or in a CSS declaration: {{nobr|{{code|lang=css|code=ul { list-style-type: foo; } }}}} – 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>. '''Only''' 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.}}
:A list item in ordered ('''ol''') or unordered ('''ul''') lists.
:<code>LI</code> existed in '']'', and was '''standardized''' in ]; still current. {{defn|<code>UL</code> existed in '']'', and was '''standardized''' in ]; still current.}}


{{Anchor|dir|dir_tag}}{{XMLElement|dir|Directory List|...|deprecated=1}} {{term|term=li |content= {{XMLElement|li|List Item}} }}
{{defn|1= A list item in ordered (<code>ol</code>) or unordered (<code>ul</code>) lists.}}
:A directory listing. The original purpose of this element was never widely supported; deprecated in favor of <code>&lt;ul&gt;</code>.
:<code>DIR</code> existed in '']'', and was '''standardized''' in ]; '''deprecated''' in ]; '''invalid''' in ]. {{defn|<code>LI</code> existed in '']'', and was '''standardized''' in ]; still current.}}


{{term|term=dir |content= {{XMLElement|dir|Directory List|deprecated=1}} }}
====Other block elements====
{{defn|1= A directory listing. The original purpose of this element was never widely supported; deprecated in favor of {{code|lang=html|code=<ul>}}.}}
{{defn|<code>DIR</code> existed in '']'', and was '''standardized''' in ]; '''deprecated''' in ]; '''invalid''' in ].}}
{{glossary end}}


==== Other block elements ====
{{Anchor|address|address_tag}}{{XMLElement|address|Address|...}}
<!--linked from Template:Pre2-->
:Contact information for the document author.
:<code>ADDRESS</code> existed in '']'', and was '''standardized''' in ]; still current.


{{glossary}}
{{anchor|blockquote}} <!-- Linked from ] -->
{{Anchor|blockquote|blockquote_tag}}{{XMLElement|blockquote|BlockQuotation|...}} {{term|term=address |content= {{XMLElement|address|Address}} }}
{{defn|1= Contact information for the document author.}}
:A ], for when the quotation includes block level elements, e.g. paragraphs. The <code>cite</code> attribute may give the source, and must be a fully qualified ].
{{defn|<code>ADDRESS</code> existed in '']'', and was '''standardized''' in ]; still current.}}
: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 (<code>q</code>) element.
:<code>BLOCKQUOTE</code> existed in '']'', and was '''standardized''' in ]; still current. See ] for more information.


{{Anchor|center|center_tag}}{{XMLElement|center|Centered Text|...|}} {{term|term=article |content= {{XMLElement|article|Article}} }}
{{defn|1= {{Main|Article element}}
:Creates a block-level center-aligned division. Deprecated in favor of <code>&lt;div&gt;</code> or another element with centering defined using stylesheets.
Used for articles and other similar content.
:'''Standardized''' in ];
}}
{{defn|'''Standardized''' in ].}}


{{Anchor|del|del_tag}}{{XMLElement|del|Deleted Section|...}} {{term|term=aside |content= {{XMLElement|aside|Aside}} }}
{{defn|1= Used for content in a document which is separate from the main page content, for example, sidebars or advertising.}}
:Marks a deleted section of content. This element can also be used as ''inline''.
:'''Standardized''' in ]; still current. {{defn|'''Standardized''' in ].}}


{{term|term=blockquote |content= {{XMLElement|blockquote|BlockQuotation}}<!-- Linked from ] --> }}
{{Anchor|div|div_tag}}{{XMLElement|div|Logical division|...}}
{{defn|1= {{Main|Blockquote element}}
{{Main|Span and div}}
A ], for when the quotation includes block level elements, e.g. paragraphs. The <code>cite</code> attribute (not to be confused with the ] element) may give the source, and must be a fully qualified ].
: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 ] or ] calls.
:Proposed in the ]; '''Standardized''' in ]; still current.


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 (]) element.
{{Anchor|hr|hr_tag}}{{HTMLElement|hr|HorizontalRule||end=no}}
}}
:A horizontal rule. Presentational rules can also be drawn with stylesheets.
:'''Standardized''' in ]; still current. {{defn|<code>BLOCKQUOTE</code> existed in '']'', and was '''standardized''' in ]; still current. See ] for more information.}}


{{Anchor|ins|ins_tag}}{{XMLElement|ins|Inserted Section|...}} {{term|term=center |content= {{XMLElement|center|Centered Text|deprecated=1}} }}
{{defn|1= Creates a block-level center-aligned division. Deprecated in favor of ] or another element with centering defined using style sheets.}}
:Marks a section of inserted content. This element can also be used as ''inline''.
:'''Standardized''' in ]; still current. {{defn|'''Standardized''' in ]; '''deprecated''' in ]; '''not supported''' in ].}}


{{Anchor|noscript|noscript_tag}}{{XMLElement|noscript|Noscript|...}} {{term|term=del |content= {{XMLElement|del|Deleted Section}} }}
:Replacement content for scripts. Unlike '''script''' this can only be used as a block-level element. {{defn|1= Marks a deleted section of content. This element can also be used as ''inline''.}}
:'''Standardized''' in ]; still current. {{defn|'''Standardized''' in ]; still current.}}


{{Anchor|pre|pre_tag}}{{XMLElement|pre|PreFormattedText|...}} {{term|term=div |content= {{XMLElement|div|Logical division}} }}
{{defn|1= {{Main|Span and div}}
:''Pre-formatted'' text. Text within this element is typically displayed in a ] exactly as it is laid out in the file (see ]). Whereas browsers ignore ] for other HTML elements, in <code>pre</code>, whitespace should be rendered as authored. (With the CSS properties: <code>{white-space: pre; font-family: monospace;}</code>, other elements can be presented in the same way.) This element can contain any inline element except: image (<code>IMG</code>), object (<code>OBJECT</code>), big font size (<code>BIG</code>), small font size (<code>SMALL</code>), superscript (<code>SUP</code>), and subscript (<code>SUB</code>).
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 ] or ] calls.}}
:<code>PRE</code> existed in '']'', and was '''standardized''' in ]; still current.
{{defn|Proposed in the ]; '''Standardized''' in ]; still current.}}


{{Anchor|script|script_tag}}{{XMLElement|script|Script|...}} {{term|term=figure |content= {{XMLElement|figure|Figure}} }}
{{defn|1= Used to group images and captions, along with {{tag|figcaption|o}}.}}
:Places a script in the document. Also usable in the head and in inline contexts.
{{defn|'''Standardized''' in ].}}
::Note: <code>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.

:'''Standardized''' in ]; still current.
{{term|term=figcaption |content= {{XMLElement|figcaption|Figure Caption}} }}
{{defn|1= A caption for an image. Always placed inside the {{tag|figure|o}} element.}}
{{defn|'''Standardized''' in ].}}

{{term|term=footer |content= {{XMLElement|footer|Footer}} }}
{{defn|1= Used for document footers. These might contain author or copyright information, or links to other pages.}}
{{defn|'''Standardized''' in ].}}

{{term|term=header |content= {{XMLElement|header|Header}} }}
{{defn|1= Used for document headers. These typically contain content introducing the page.}}
{{defn|'''Standardized''' in ].}}

{{term|term=hr |content= {{XMLElement|hr|Thematic break|end=no}} }}
{{defn|1= A ] (originally: horizontal rule). Presentational rules can be drawn with style sheets.}}
{{defn|'''Standardized''' in ]; still current.}}

{{term|term=ins |content= {{XMLElement|ins|Inserted Section}} }}
{{defn|1= Marks a section of inserted content. This element can also be used as ''inline''.}}
{{defn|'''Standardized''' in ]; still current.}}

{{term|term=main |content= {{XMLElement|main|Main Content}} }}
{{defn|1= Contains the main content of a document.}}
{{defn|'''Standardized''' in ].}}

{{term|term=menu |content= {{XMLElement|menu|Menu}} }}
{{defn|1= HTML 2.0: A menu listing. Should be more compact than a {{tag|ul|o}} list.}}
{{defn|<code>MENU</code> existed in '']'', and was '''standardized''' in ]; '''deprecated''' in ]; '''invalid''' in ]; then redefined in ], removed in HTML 5.2, but is included in the HTML Living Standard in 2019. }}

{{term|term=nav |content= {{XMLElement|nav|Navigation}} }}
{{defn|1= Used in navigational sections of articles (areas of webpages which contain links to other webpages).}}
{{defn|'''Standardized''' in ].}}

{{term|term=noscript |content= {{XMLElement|noscript|JavaScript Fallback}} }}
{{defn|1= Replacement content for scripts. Unlike '''script''' this can only be used as a block-level element.}}
{{defn|'''Standardized''' in ]; still current.}}

{{term|term=pre |content= {{XMLElement|pre|PreFormatted Text}} }}
{{defn|1= ''Pre-formatted'' text. Text within this element is typically displayed in a ] exactly as it is laid out in the file (see ]). Whereas browsers ignore ] for other HTML elements, in {{tag|pre}}, white-space should be rendered as authored. (With the CSS properties: {{code|lang=css|code={ white-space: pre; font-family: monospace; }<nowiki />}}, other elements can be presented in the same way.) This element can contain any inline element except: ], ], ], ], ], and ].}}
{{defn|<code>PRE</code> existed in '']'', and was '''standardized''' in ]; still current.}}

{{term|term=section |content= {{XMLElement|section|Section}} }}
{{defn|1= Used for generic sections of a document. This is different from ] 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.}}
{{defn|'''Standardized''' in ].}}

{{term|term=script |content= {{XMLElement|script|Script}} }}
{{defn|1= Places a script in the document. Also usable in the head and in inline contexts. It may be used as {{tag|script|s}} with a <code>src</code> attribute to supply a URL from which to load the script, or used as {{tag|script}} around embedded script content.

{{strong|Note:}} {{tag|script|o}} 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.}}
{{defn|'''Standardized''' in ]; still current.}}
{{glossary end}}


===Inline elements=== ===Inline elements===


Inline elements cannot be placed directly inside the <code>body</code> element; they must be wholly nested within block-level elements.<ref>{{citation|url=http://www.w3.org/TR/html401/struct/global.html#h-7.5.1 |title=HTML 4.01 |publisher=W3.org |date= |accessdate=2012-03-26}}</ref> Inline elements cannot be placed directly inside the {{code|lang=html|code=<body>}} element; they must be wholly nested within block-level elements.<ref>{{citation|url=http://www.w3.org/TR/html401/struct/global.html#h-7.5.1 |title=HTML 4.01 |publisher=W3C |access-date=2012-03-26}}</ref>


====Anchor==== ====Anchor====
{{for|anchors on Misplaced Pages|WP:ANCHOR DEF|selfref=true}}
{{glossary}}
{{term|term=a |content= {{XMLElement|a|Anchor}} }}
{{defn|1= <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.<ref>{{cite book |last1= Tittel |first1= Ed |last2= Burmeister |first2= Mary C. |date= 2005 |title= HTML 4 for dummies |edition= 5th |publisher= Wiley |location= Hoboken, New Jersey |isbn= 978-0-7645-8917-1 |page= 96 |url= https://archive.org/details/html4fordummies00titt_2/page/96/ |url-access= registration |access-date= 7 August 2022}}</ref></p>


<p>In HTML, an "anchor" can be either the {{em|origin}} (the ]) or the {{em|target}} (destination) end of a ]. As an origin, setting the attribute <code>href</code>,<ref>{{cite web|url=http://www.w3.org/Provider/ServerWriter.html|title=ServerWriter -- /Provider|website=W3C}}</ref> creates a hyperlink; it can point to either another part of the document or another resource (e.g. a webpage) using an external ]. As a target, setting the <code>name</code> or <code>id</code> ], allows the element to be linked from a ] (URL) via a ]. The two forms, origin and anchor, can be used concurently.</p>
{{Anchor|a|a_tag}}{{XMLElement|a|Anchor|...}}

: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.<ref>], 5th edition, 2005,
In HTML5, any element can now be made into a target by using the <code>id</code> attribute,<ref>{{cite web|url=http://www.w3.org/tr/html5/index.html#attributes-1|title=HTML 5.2|website=W3C}}</ref> so using {{code|lang=html|code=<a name="foo">...</a>}} is not necessary, although this way of adding anchors continues to work.</p>
By Ed Tittel, Mary C. Burmeister, p.&nbsp;96.</ref>

:In HTML, an '''anchor''' can be either the origin or the ''target'' (destination) end of a ''']'''.
<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|lang=html|code=<h2><a name="contents">Table of contents</a></h2>}}.</p>
:With the attribute <code>href</code> (hypertext reference ), the anchor becomes a hyperlink to either another part of the document or another resource (e.g. a webpage) using an external ].

:Alternatively (and sometimes concurrently), with the <code>name</code> or <code>id</code> ] set, the element becomes a target. A ] can link to this target via a ]. Any element can now be made into an anchor by using the <code>id</code> attribute,<ref></ref> so using <code>&lt;a name="foo"></code> is not necessary.
<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|lang=html|code=<a href="http://example.com#contents">see contents</a>}};</p>
:The attribute <code>title</code> may be set to give brief information about the link:

::<code>&lt;a href="''URL''" title="''additional information''"&gt;link text&lt;/a&gt;</code>
<p>or with a link on the same page like: {{code|lang=html|code=<a href="#contents">contents, above</a>}}.</p>
:In most graphical browsers, when the cursor hovers over a link, the cursor changes into a hand with a stretched index finger and the <code>title</code> is displayed in a ] or in some other manner. Some browsers render ] the same way, despite this not being what the specification calls for.

:<code>A</code> existed in '']'', and was '''standardized''' in ]; still current.
<p>The attribute <code>title</code> may be set to give brief information about the link: {{code|lang=html|code=<a href="URL" title="additional information">link text</a>}}.</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 ] or in some other manner. Some browsers render ] the same way, although this is not what the specification calls for.</p>
}}
{{defn|<code>A</code> existed in '']'', and was '''standardized''' in ];}}
{{glossary end}}


====Phrase elements==== ====Phrase elements====
Phrase elements are used for marking up phrases and adding structure or semantic meaning to text fragments. For example, the <code><nowiki><em></nowiki></code> and <code><nowiki><strong></nowiki></code> tags can be used for adding emphasis to text.


=====General===== =====General=====


{{glossary}}
{{Anchor|abbr|abbr_tag}}{{XMLElement|abbr|Abbreviation|...}}
{{term|term=abbr |content= {{XMLElement|abbr|Abbreviation}} }}
:Marks an ], and can make the full form available:
::<code>&lt;abbr title="abbreviation"&gt;abbr.&lt;/abbr&gt;</code> {{defn|1= Marks an ], and can make the full form available: {{code|lang=html|code=<abbr title="abbreviation">abbr.</abbr>}}}}
:'''Standardized''' in ]; still current. {{defn|'''Standardized''' in ]; still current.}}

{{term|term=acronym |content= {{XMLElement|acronym|Acronym|deprecated=1}} }}
{{defn|1= Similar to the {{code|lang=html|code=<abbr>}} element, but marks an ]: {{code|lang=html|code=<acronym title="Hyper-Text Mark-up Language">HTML</acronym>}}}}
{{defn|'''Standardized''' in ]; still current, '''not supported''' in ]. Recommended replacement is the <code>abbr</code> tag.<ref>, acronym.</ref>}}


{{Anchor|acronym|acronym_tag}}{{XMLElement|acronym|Acronym|...|deprecated=1}} {{term|term=defn |content= {{XMLElement|dfn|Definition}} }}
{{defn|1= Inline definition of a single term.}}
:Similar to the <code>abbr</code> element, but marks an ]:
{{defn|<code>DFN</code> existed in '']'', and was fully '''standardized''' in ]; still current.}}
::<code>&lt;acronym title="Hyper-Text Markup Language"&gt;HTML&lt;/acronym&gt;</code>
:'''Standardized''' in ]; still current, not supported in ].


{{Anchor|dfn|dfn_tag}}{{XMLElement|dfn|Definition|...}} {{term|term=em |content= {{XMLElement|em|Emphasis}} }}
{{defn|1= <em>Emphasis</em> (conventionally displayed in italics)}}
:Inline definition of a single term.
:<code>DFN</code> existed in '']'', and was fully '''standardized''' in ]; still current. {{defn|<code>EM</code> existed in '']'', and was '''standardized''' in ]; still current.}}


{{Anchor|em|em_tag}}{{XMLElement|em|Emphasis|...}} {{term|term=strong |content= {{XMLElement|strong|Importance}} }}
:''Emphasis'' (conventionally displayed in italics) {{defn|1= <strong>importance</strong>; originally strong emphasis (conventionally displayed bold).
:<code>EM</code> existed in '']'', and was '''standardized''' in ]; still current.


An ] may use different voices for emphasis.
{{Anchor|strong|strong_tag}}{{XMLElement|strong|Strong Emphasis|...}}
}}
:<strong>strong emphasis</strong> (conventionally displayed bold).
{{defn|<code>STRONG</code> existed in '']'', and was '''standardized''' in ]; still current, redefined in HTML5.}}
:An ] may use different voices for emphasis.
{{glossary end}}
:<code>STRONG</code> existed in '']'', and was '''standardized''' in ]; still current.


=====Computer phrase elements===== =====Computer phrase elements=====
These elements are useful primarily for documenting computer code development and user interaction through differentiation of source code (&lt;code&gt;), source code variables (&lt;var&gt;), user input (&lt;kbd&gt;), and terminal output (&lt;samp&gt;). These elements are useful primarily for documenting computer code development and user interaction through differentiation of source code ({{code|lang=html|code=<code>}}), variables ({{code|lang=html|code=<var>}}), user input ({{code|lang=html|code=<kbd>}}), and terminal or other output ({{code|lang=html|code=<samp>}}).


{{glossary}}
{{Anchor|code|code_tag}}{{XMLElement|code|Sourcecode|...}}
{{term|term=code |content= {{XMLElement|code|Sourcecode}} }}
:A code snippet. Conventionally rendered in a monospace font: <code>Code snippet.</code>
{{defn|1= A code snippet (<code>code example</code>). Conventionally rendered in a mono-space font.}}
:<code>CODE</code> existed in '']'', and was '''standardized''' in ]; still current.
{{defn|<code>CODE</code> existed in '']'', and was '''standardized''' in ]; still current.}}


{{Anchor|samp|samp_tag}}{{XMLElement|samp|Sample|...}} {{term|term=kbd |content= {{XMLElement|kbd|Keyboard}} }}
{{defn|1= Keyboard – text to be entered by the user (<kbd>kbd example</kbd>).}}
:Sample output (from a program or script)
:<code>SAMP</code> existed in '']'', and was '''standardized''' in ]; still current. {{defn|<code>KBD</code> existed in '']'', and was '''standardized''' in ]; still current.}}


{{Anchor|kbd|kbd_tag}}{{XMLElement|kbd|Keyboard|...}} {{term|term=samp |content= {{XMLElement|samp|Sample}} }}
{{defn|1= Sample output – from a program or script: (<samp>samp example</samp>).}}
:Keyboard - text to be entered by the user
:<code>KBD</code> existed in '']'', and was '''standardized''' in ]; still current. {{defn|<code>SAMP</code> existed in '']'', and was '''standardized''' in ]; still current.}}


{{Anchor|var|var_tag}}{{XMLElement|var|Variable|...}} {{term|term=var |content= {{XMLElement|var|Variable}} }}
{{defn|1= Variable (<var>var example</var>).}}
:Variable
:<code>VAR</code> existed in '']'', and was '''standardized''' in ]; still current. {{defn|<code>VAR</code> existed in '']'', and was '''standardized''' in ]; still current.}}
{{glossary end}}


=====Presentation===== ====Presentation====
As visual presentational markup only applies directly to visual browsers, its use is discouraged. Stylesheets 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 . The current draft of , however, re-includes <code>&lt;b&gt;</code>, <code>&lt;i&gt;</code>, <code>&lt;u&gt;</code>, and <code>&lt;small&gt;</code>, assigning new semantic meaning to each. In an ] document, the use of these elements is no longer discouraged, provided that it is semantically correct. 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 . The current draft of , however, re-includes {{tag|s|o}}, {{tag|u|o}}, and {{tag|small|o}}, assigning new semantic meaning to each. In an ] document, the use of these elements is no longer discouraged, provided that it is semantically correct.


{{Anchor|b|b_tag}}{{XMLElement|b|Bold|...}} <!-- not deprecated in ]; not included in ] which is in draft stage; now a semantic element in ] --> {{term|term=b |content= {{XMLElement|b|Keyword}} }}
{{defn|1= <!-- not deprecated in ]; not included in ] which is in draft stage; now a semantic element in ] -->
:In ], set font to '''boldface''' where possible. Equivalent CSS: <code>{font-weight: bold}</code>. <code>&lt;strong&gt;...&lt;/strong&gt;</code> usually has the same effect in visual browsers, as well as having more semantic meaning, under ]. In ], set font to '''boldface''' where possible. Equivalent CSS: {{code|lang=css|code={ font-weight: bold; } }}. The {{tag|strong|o}} element usually has the same effect in visual browsers, as well as having more semantic meaning, under ].
:In ], however, <code>b</code> has its own meaning, distinct from that of <code>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."<ref name="html5-b-element">{{citation|url=http://developers.whatwg.org/text-level-semantics.html#the-b-element |title=4.6 Text-level semantics — The b element |publisher=Developers.whatwg.org |date= |accessdate=2012-03-26}}</ref>
:<code>B</code> existed in '']'', and was '''standardized''' in ]; still current.


In ], however, {{tag|b|o}} has its own meaning, distinct from that of {{tag|strong|o}}. 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."<ref name="html5-b-element">{{citation|url=http://developers.whatwg.org/text-level-semantics.html#the-b-element |title=4.6 Text-level semantics — The b element |publisher=Developers.whatwg.org |access-date=2012-03-26}}</ref>
{{Anchor|i|i_tag}}{{XMLElement|i|Italic|...}} <!-- not deprecated in HTML 4.01; not included in XHTML 2.0 which is in draft stage; now a semantic element in HTML 5 -->
}}
:In ], set font to ''italic'' where possible. Equivalent ]: <code>{font-style: italic}</code>. <code>&lt;em&gt;...&lt;/em&gt;</code> usually has the same effect in visual browsers, as well as having more semantic meaning, under ].
{{defn|<code>B</code> existed in '']'', and was '''standardized''' in ]; still current, redefined in HTML5.}}
:In ], however, <code>i</code> has its own semantic meaning, distinct from that of <code>em</code>. It denotes "a different quality of text" or "an alternative voice or mood"—e.g., a thought, a ship name, a ], a foreign-language phrase, etc.<ref name="html5-i-element">{{citation|url=http://developers.whatwg.org/text-level-semantics.html#the-i-element |title=4.6 Text-level semantics — The i element |publisher=Developers.whatwg.org |date= |accessdate=2012-03-26}}</ref>
:<code>I</code> existed in '']'', and was '''standardized''' in ]; still current.


{{Anchor|u|u_tag}}{{XMLElement|u|Underlined|...}} {{term|term=i |content= {{XMLElement|i|Alternate voice}} }}
{{defn|1= <!-- not deprecated in HTML 4.01; not included in XHTML 2.0 which is in draft stage; now a semantic element in HTML5 -->
:In ], <u>underlined</u> text. Equivalent CSS: <code>{text-decoration: underline}</code>. Deprecated in ]. Restored in ].
In ], set font to ''italic'' where possible. Equivalent ]: {{code|lang=css|code={ font-style: italic; } }}. Using {{tag|em}} has the same visual effect in most browsers, as well as having a semantic meaning as ''emphasis'', under ]. (Purely typographic italics have many non-emphasis purposes, as HTML 5 more explicitly recognized.)
:In ], the <code>u</code> element denotes "a span of text with an unarticulated, though explicitly rendered, non-textual annotation, such as labeling the text as being a proper name in Chinese text (a Chinese proper name mark), or labeling the text as being misspelt." The ] specification reminds developers that other elements are almost always more appropriate than <code>u</code> and admonishes designers not to use underlined text where it could be confused for a hyperlink.<ref name="html5-u-element">{{citation|url=http://developers.whatwg.org/text-level-semantics.html#the-u-element |title=4.6 Text-level semantics — The u element |publisher=Developers.whatwg.org |date= |accessdate=2012-03-26}}</ref>
:<code>U</code> existed in '']'', was '''standardized''' in ] but was '''deprecated''' in ] and was '''invalid''' in ]. The <code>u</code> element is reintroduced in ].


In ], however, {{tag|i|o}} has its own semantic meaning, distinct from that of {{tag|em|o}}. It denotes "a different quality of text" or "an alternate<!--sic--> voice or mood" e.g., a thought, a ship name, a ], a foreign-language phrase, etc.<!-- Not (or no longer) a precise quote, so don't put this in quotation marks --><ref name="html5-i-element">{{citation|url=http://developers.whatwg.org/text-level-semantics.html#the-i-element |title=4.6 Text-level semantics — The i element |publisher=Developers.whatwg.org |access-date=2012-03-26}}</ref>
{{Anchor|small|small_tag}}{{XMLElement|small|Small|...}}
}}
:In ], decreased font size (<small>smaller</small> text). Equivalent CSS: <code>{font-size: smaller}</code>
{{defn|<code>I</code> existed in '']'', and was '''standardized''' in ]; still current, redefined in HTML5.}}
:In ], the <code>small</code> element denotes "side comments such as small print."<ref name="html5-small-element">{{citation|url=http://developers.whatwg.org/text-level-semantics.html#the-small-element |title=4.6 Text-level semantics — The small element |publisher=Developers.whatwg.org |date= |accessdate=2012-03-26}}</ref>
:'''Standardized''' in ]; still current.


{{Anchor|s|s_tag}}{{XMLElement|s|Strikethrough|...}} {{term|term=u |content= {{XMLElement|u|Unarticulated annotation}} }}
{{defn|1= In ], <u>underlined</u> text. Equivalent CSS: {{code|lang=css|code={ text-decoration: underline; } }}. Deprecated in ]. Restored in ].
:In ], indicated strike-through text (<s>Strikethrough</s>) and was equivalent to <code>strike</code>.
:In ], the <code>s</code> element denotes information that is "no longer accurate or no longer relevant", and is not to be confused with <code>del</code>, which indicates removal/deletion.<ref name="html5-s-element">{{citation|url=http://developers.whatwg.org/text-level-semantics.html#the-s-element |title=4.6 Text-level semantics — The s element |publisher=Developers.whatwg.org |date= |accessdate=2012-03-26}}</ref>
:<code>S</code> was '''deprecated''' in ] (having not appeared in any previous standard), and was '''invalid''' in ]. The <code>s</code> element is reintroduced in ].


In ], the {{tag|u|o}} 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 ] specification reminds developers that other elements are almost always more appropriate than {{tag|u|o}} and admonishes designers not to use underlined text where it could be confused for a hyper-link.<ref name="html5-u-element">{{citation|url=http://developers.whatwg.org/text-level-semantics.html#the-u-element |title=4.6 Text-level semantics — The u element |publisher=Developers.whatwg.org |access-date=2012-03-26}}</ref>
{{Anchor|big|big_tag}}{{XMLElement|big|Big|...|}}
}}
:Increased font size (<big>bigger</big> text). Equivalent CSS: <code>{font-size: larger}</code>
{{defn|<code>U</code> existed in '']'', was '''standardized''' in ] but was '''deprecated''' in ] and was '''invalid''' in ]. '''Reintroduced''' in ].}}
:'''Standardized''' in ]; not supported in ].


{{Anchor|strike|strike_tag}}{{XMLElement|strike|Strikethrough|...|}} {{term|term=small |content= {{XMLElement|small|Side comment}} }}
:Strike-through text (<s>Strikethrough</s>), (Equivalent CSS: <code>{text-decoration: line-through}</code>) {{defn|1= In ], decreased font size (<small>smaller</small> text). Equivalent CSS: {{code|lang=css|code={ font-size: smaller; } }}
:<code>STRIKE</code> was standardized in ]; '''deprecated''' in ]; '''invalid''' in ].


In ], the {{tag|small|o}} element denotes "side comments such as small print."<ref name="html5-small-element">{{citation|url=http://developers.whatwg.org/text-level-semantics.html#the-small-element |title=4.6 Text-level semantics — The small element |publisher=Developers.whatwg.org |access-date=2012-03-26}}</ref> This has caused some confusion with the {{tag|]}} element.
{{Anchor|tt|tt_tag}}{{XMLElement|tt|Teletype|...|}}
}}
:] font (<tt>typewriter-like</tt>), also known as <tt>]</tt>. (Equivalent CSS: <code>{font-family: monospace;}</code>)
{{defn|'''Standardized''' in ]; still current.}}
:<code>TT</code> existed in '']'', and was '''standardized''' in ]; not supported<ref name="html5-tt-not-supported">{{citation|url=http://www.w3.org/TR/html5/obsolete.html#non-conforming-features |title=11 Obsolete features — HTML5 |publisher=W3.org |date= |accessdate=2012-03-26}}</ref> in HTML 5.


{{term|term=s |content= {{XMLElement|s|Inacurrate text}} }}
<!-- font description start -->
{{defn|1= In ], indicated strike-through text (<s>Strikethrough</s>) and was equivalent to {{tag|strike|o}}.
{{Anchor|font|font_tag}}{{XMLElement|font|Teletype|...|}}

:<code>&lt;font &gt;...&lt;/font&gt;</code>
In ], the {{tag|s|o}} element denotes information that is "no longer accurate or no longer relevant", and is not to be confused with {{tag|del|o}}, which indicates removal/deletion.<ref name="html5-s-element">{{citation|url=http://developers.whatwg.org/text-level-semantics.html#the-s-element |title=4.6 Text-level semantics — The s element |publisher=Developers.whatwg.org |access-date=2012-03-26}}</ref>
:Can specify the font color with the <code>color</code> attribute, 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):
{{defn|<code>S</code> was '''deprecated''' in ] (having not appeared in any previous standard), and was '''invalid''' in ]. '''Reintroduced''' in ], which instead deprecated {{tag|strike|o}}.}}
:# <code>&lt;font color="green">text&lt;/font></code> creates <span style="color:green;">green text</span>.

:# <code>&lt;font color="#114499">text&lt;/font></code> creates <span style="color:#149;">text with ] #114499</span>.
{{term|term= |content= {{XMLElement|big|Big|deprecated=1}} }}
:# <code>&lt;font size="4">text&lt;/font></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 &lt;body> or other tags.
{{defn|1= Increased font size (<big>bigger</big> text). Equivalent CSS: {{code|lang=css|code={ font-size: larger; } }}}}
:# <code>&lt;font size="+1">text&lt;/font></code> creates <span style="font-size:125%;">text with size 1 bigger than the standard.</span> <code>&lt;font size="-1">text&lt;/font></code> is opposite.
{{defn|'''Standardized''' in ]; '''not supported''' in ].}}
:# <code>&lt;font face="Courier">text&lt;/font></code> makes <span style="font-family:Courier;">text</span> with Courier font.

:Equivalent CSS for font attributes:
{{term|term= |content= {{XMLElement|strike|Strikethrough|deprecated=1}} }}
:*<code>&lt;font size="<var>N</var>"></code> corresponds to <code>{font-size: <var>Y</var><var>units</var>}</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).
{{defn|1= Strike-through text (<s>Strikethrough</s>), (Equivalent CSS: {{code|lang=css|code={ text-decoration: line-through; } }})}}
:*<code>&lt;font color="red"></code> corresponds to <code>{color: red}</code>
{{defn|<code>STRIKE</code> was standardized in ]; '''deprecated''' in ]; '''invalid''' in ].}}
:*<code>&lt;font face="Courier"></code> corresponds to <code>{font-family: "Courier"}</code>

:'''Standardized''' in ]; '''deprecated''' in ]; '''invalid''' in ]. Not part of HTML5.
{{term|term=tt |content= {{XMLElement|tt|Teletype|deprecated=1}} }}
{{defn|1= ] font ({{mono|typewriter-like}}<!-- DO NOT use actual deprecated markup in this page; use CSS to simulate its output.-->), also known as ], thus "tt". (Equivalent CSS: {{code|lang=css|code={ font-family: monospace; } }})}}
{{defn|<code>TT</code> existed in '']'', and was '''Standardized''' in ]; not supported<ref name="html5-tt-not-supported">{{citation|url=http://www.w3.org/TR/html5/obsolete.html#non-conforming-features |title=11 Obsolete features — HTML5 |publisher=W3C |access-date=2012-03-26}}</ref> in HTML5. Possible replacements: ] for marking user input, ] for variables (usually rendered italic, and not with a change to monospace), ] for source code, ] for output.<ref name="html5-tt-not-supported" />}}

{{term|term=font |content= {{XMLElement|font|Teletype|deprecated=1}} }}
{{defn|1= {{code|lang=html|code=<font >...</font>}}

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):
* {{code|lang=html|code=<font color="green">text</font>}} creates {{green|green text}}.
* {{code|lang=html|code=<font color="#114499">text</font>}} creates <span style="color:#149;">text with ] #114499</span>.
* {{code|lang=html|code=<font size="4">text</font>}} 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 &lt;body> or other tags.
* {{code|lang=html|code=<font size="+1">text</font>}} creates <span style="font-size:125%;">text with size 1 bigger than the standard.</span> {{code|lang=html|code=<font size="-1">text</font>}} is opposite.
* {{code|lang=html|code=<font face="Courier">text</font>}} makes <span style="font-family:Courier;">text</span> with Courier font.

Equivalent CSS for font attributes:
*<code class="mw-highlight"><span class="p">&lt;</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">&gt;</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).
*{{code|lang=html|code=<font color="red">}} corresponds to {{code|lang=css|code={ color: red; } }}
*{{code|lang=html|code=<font face="Times New Roman">}} corresponds to {{code|lang=css|code={ font-family: 'Times New Roman', Times, serif; } }} – CSS supports a ], of two or more alternative fonts.
}}
{{defn|'''Standardized''' in ]; '''deprecated''' in ]; '''invalid''' in ]. Not part of HTML5.}}


====Span==== ====Span====


{{glossary}}
{{Anchor|span|span_tag}}{{XMLElement|span|Span|...|}}
{{term|term=span |content= {{XMLElement|span|Span}} }}
{{Main|Span and div}}
{{defn|1= {{Main|Span and 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 ] or ] calls.
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 ] or ] calls.
:'''Standardized''' in ]; still current.
}}
{{defn|'''Standardized''' in ]; still current.}}
{{glossary end}}


====Other inline elements==== ====Other inline elements====


{{glossary}}
{{Anchor|br|br_tag}}{{HTMLElement|br|Line Break|end=no}}
{{term|term=br |content= {{XMLElement|br|Line Break|end=no}} }}
:A forced line-break.
{{defn|1= A forced line break.}}
:'''Standardized''' in ]; still current,
{{defn|'''Standardized''' in ]; still current.}}

{{term|term=bdi |content= {{XMLElement|bdi|Bidirectional Isolation}} }}
{{defn|1= 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.}}
{{defn|'''Standardized''' in ].}}

{{term|term=bdo |content= {{XMLElement|bdo|Bidirectional Override}} }}
{{defn|1= Marks an inline section of text in which the reading direction is the opposite from that of the parent element.}}
{{defn|'''Standardized''' in ]; still current.}}

{{term|term=cite |content= {{XMLElement|cite|Citation}} }}
{{defn|1= A citation or a reference for a quote or statement in the document.}}
{{defn|CITE existed in '']'', and was '''standardized''' in ]; still current.}}
{{defn|''Note:'' The HTML 5 specifications have been confusingly ],<ref name=finalars>{{cite web |url= https://arstechnica.com/information-technology/2014/10/html5-specification-finalized-squabbling-over-who-writes-the-specs-continues/ |title=HTML5 specification finalized, squabbling over specs continues |publisher=Ars Technica |date=29 October 2014 |access-date=29 October 2014}}</ref> including with regard to this element. In HTML 4 and earlier, {{tag|cite|o}} was for "a citation or a reference to other sources" without any particular limitations or requirements.<ref>{{cite web |title=9.2.1 Phrase elements: EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, ABBR, and ACRONYM |work=HTML 4.01 Specification |date=24 December 1999 |publisher=] |url= https://www.w3.org/TR/html401/struct/text.html#h-9.2.1 |access-date=26 July 2018}}</ref> The ] 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."<ref>], at .</ref> But the WHATWG spec only permits the element to be used around the title of a work.<ref>], at .</ref> 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 {{tag|cite}}, 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.
}}

{{term|term=data |content= {{XMLElement|data|Data}} }}
{{defn|1= Links inline content with a machine-readable translation.}}
{{defn|'''Standardized''' in ].<ref>{{cite web|url=https://developer.mozilla.org/en-US/docs/Web/HTML/Element/data|title=&lt;data&gt;|website=MDN Web Docs}}</ref>}}

{{term|term=del |content= {{XMLElement|del|Deleted}} }}
{{defn|1= Deleted text. Typically rendered as a ]: <del>Deleted text.</del>}}
{{defn|'''Standardized''' in ]; still current.}}

{{term|term=ins |content= {{XMLElement|ins|Inserted}} }}
{{defn|1= Inserted text. Often used to mark up replacement text for material struck with {{tag|del|o}} or {{tag|s|o}}. Typically rendered ]d: <ins>Inserted text.</ins>}}
{{defn|'''Standardized''' in ]; still current.}}
{{defn|Both {{tag|ins|o}} and {{tag|del|o}} 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 {{tag|del|o}} elements. Two {{tag|del|o}} 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.}}

{{term|term=mark |content= {{XMLElement|mark|Mark}} }}
{{defn|1= Produces text that looks <mark>like this</mark>. Intended for highlighting relevant text in a quotation.}}
{{defn|'''Standardized''' in ].}}

{{term|term=q |content= {{XMLElement|q|Quote}} }}
{{defn|1= An inline quotation (for block level quotation see {{tag|]|o}}). Quote elements may be nested.

{{tag|q|o}} {{em|should}} 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 ].
}}
{{defn|'''Standardized''' in ]; still current.}}
{{defn|{{strong|Note:}} 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>: {{tag|q|attribs=class="lengthy" |content=Lengthy quote here.}}}}

{{term|term=rb |content= {{XMLElement|rb|Ruby Annotation Base}} }}
{{defn|1= Represents the base component of a ].}}
{{defn|'''Standardized''' in ].<ref>{{cite web|url=http://www.quackit.com/html/tags/html_rb_tag.cfm|title=HTML &lt;rb&gt; Tag|website=www.quackit.com}}</ref>}}

{{term|term=rp |content= {{XMLElement|rp|Ruby Fallback Parenthesis}} }}
{{defn|1= Provides fallback parenthesis for browsers lacking ] support.}}
{{defn|'''Standardized''' in ].<ref>{{cite web|url=https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rp|title=&lt;rp&gt;: The Ruby Fallback Parenthesis element|website=MDN Web Docs}}</ref>}}


{{Anchor|bdo|bdo_tag}}{{XMLElement|bdo|Bidirectional Override|...|}} {{term|term=rt |content= {{XMLElement|rt|Ruby Annotation Pronunciation}} }}
{{defn|1= Indicates pronunciation for a character in a ].}}
:Marks an inline section of text in which the reading direction is the opposite from that of the parent element.
{{defn|'''Standardized''' in ].<ref>{{cite web|url=https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rt|title=&lt;rt&gt;: The Ruby Text element|website=MDN Web Docs}}</ref>}}
:'''Standardized''' in ]; still current.


{{Anchor|cite|cite_tag}}{{XMLElement|cite|Citation|...}} {{term|term=rtc |content= {{XMLElement|rtc|Ruby Semantic Annotation}} }}
{{defn|1= Semantic annotations for a ].}}
:A citation. Reference for a quote or statement in the document.
{{defn|'''Standardized''' in ].<ref>{{cite web|url=https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rtc|title=&lt;rtc&gt;: The Ruby Text Container element|website=MDN Web Docs}}</ref>}}
:'''CITE''' existed in '']'', and was '''standardized''' in ]; still current.


{{Anchor|del|del_tag}}{{XMLElement|del|Deleted|...}} {{term|term=ruby |content= {{XMLElement|ruby|Ruby Annotation}} }}
{{defn|1= Represents a ] for showing the pronunciation of East Asian characters.}}
:Deleted text. Typically rendered as a ]: <del>Deleted text.</del>
{{defn|'''Standardized''' in ].<ref>{{cite web|url=https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ruby|title=&lt;ruby&gt;|website=MDN Web Docs}}</ref>}}
:'''Standardized''' in ]; still current.


{{Anchor|ins|ins_tag}}{{XMLElement|ins|Inserted|...}} {{term|term=script |content= {{XMLElement|script|Script}} }}
{{defn|1= Places a ] in the document. Also usable in the head and in block contexts.
:Inserted text. Often used to mark up replacement text for <code>&lt;del></code>'d text. Typically rendered ]d: <ins>Inserted text.</ins>
:'''Standardized''' in ]; still current.


{{em|Note:}} {{tag|script|o}} 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.
::Note, both <code>&lt;ins&gt;</code> and <code>&lt;del&gt;</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>&lt;del&gt;</code> elements. Two <code>&lt;del&gt;</code> elements would be required as inline element 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.
}}
{{defn|'''Standardized''' in ]; still current.}}


{{Anchor|q|q_tag}}{{XMLElement|q|Quote|...}} {{term|term=sub |content= {{XMLElement|sub|Subscript}} }}
{{term|term=sup |content= {{XMLElement|sup|Superscript}} |multi=y}}
:An inline quotation (for block level quotation see <code>BLOCKQUOTE</code>). Quote elements may be nested.
{{defn|1= Mark <sub>]ed</sub> or <sup>]ed</sup> text. (Equivalent CSS: {{code|lang=css|code={ vertical-align: sub; } }} and {{code|lang=css|code={ vertical-align: super; } }}, respectively.)}}
:<code>&lt;q&gt;</code> ''should'' automatically generate quotation marks in conjunction with Stylesheets. Practical concerns due to browser non-compliance may force authors to find work-arounds.
{{defn|Both were proposed in the ]; '''Standardized''' in ]; still current.}}
:The <code>cite</code> ''attribute'' gives the source, and must be a fully qualified ].
:'''Standardized''' in ]; still current.
::Note: Lengthy inline quotations may be displayed as indented blocks (as <code>blockquote</code>) using stylesheets. For example, with a suitable CSS rule associated with <code>q.lengthy</code>:
:::<code>&lt;q class="lengthy"&gt;</code>An inline quotation of significant length (say 25 words, for example) goes here...<code>&lt;/q&gt;</code>


{{Anchor|script|script_tag}}{{XMLElement|script|Script|...}} {{term|term=template |content= {{XMLElement|template|Template}} }}
{{defn|1= Code fragments to be copied by scripts.}}
:Places a ] in the document. Also usable in the head and in block contexts.
{{defn|'''Standardized''' in ].<ref>{{cite web|url=https://developer.mozilla.org/en-US/docs/Web/HTML/Element/template|title=&lt;template&gt;|website=MDN Web Docs}}</ref>}}
::Note: <code>&lt;script&gt;</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.
:'''Standardized''' in ]; still current.


{{Anchor|sub|sub_tag}}{{XMLElement|sub|Subscript|...}} and {{XMLElement|sup|Superscript|...}} {{term|term=time |content= {{XMLElement|time|Time}} }}
{{defn|1= Represents a time on the 24-hour clock or a date on the ], optionally with time and time zone information. Also allows times and dates to be represented in a machine-readable format.}}
:Mark <sub>]</sub> or <sup>]</sup> text. (Equivalent CSS: <code>{vertical-align: sub}</code> or <code>{vertical-align: super}</code>.)
{{defn|'''Standardized''' in ].<ref>{{cite web|url=https://developer.mozilla.org/en-US/docs/Web/HTML/Element/time|title=&lt;time&gt;|website=MDN Web Docs}}</ref>}}
:Both were proposed in the ]; '''Standardized''' in ]; still current.


{{Anchor|wbr|wbr_tag}}{{HTMLElement|wbr|Optional line break|end=no}} {{term|term=wbr |content= {{XMLElement|wbr|Word Break Opportunity|end=no}} }}
:An optional line break. {{defn|1= An optional word break.}}
:Was widely used (and supported by all major browsers) for years despite being non-standard until finally being '''standardized''' in ]. {{defn|Was widely used (and supported by all major browsers){{Citation needed|date=September 2023}} for years{{Clarify timeframe|date=September 2023}} despite being non-standard until finally being '''standardized''' in ].<ref>{{cite web|url=https://developer.mozilla.org/en-US/docs/Web/HTML/Element/wbr|title=&lt;wbr&gt;|website=MDN Web Docs}}</ref>}}
{{glossary end}}


===Images and objects=== ===Images and objects===
{{Update section|reason=How do current browsers handle <applet>? What does HTML 5 say about it?|date=July 2023}}
{{glossary}}
{{term|term=applet |content= {{XMLElement|applet|Java Applet|deprecated=xhtml}} }}
{{defn|1= Embeds a ] in the page. Deprecated in favor of {{tag|object|o}}, as it could only be used with Java applets, and had accessibility limitations.}}
{{defn|'''Standardized''' in ]; '''deprecated''' in ]; '''invalid''' in ]. As of 2011, still widely used as the implementations of the replacing {{tag|object|o}} are not consistent between different browsers.}}


{{Anchor|applet|applet_tag}}{{XMLElement|applet|Java Applet|...|deprecated=xhtml}} {{term|term=area |content= {{XMLElement|area|Area|end=no}} }}
{{defn|1= Specifies a ] area in a {{tag|map|o}}.}}
:Embeds a ] in the page. Deprecated in favour of <code>&lt;object&gt;</code>, as it could only be used with Java applets, and had accessibility limitations.
{{defn|'''Standardized''' in ]; still current.}}
:'''Standardized''' in ]; '''deprecated''' in ]; '''invalid''' in ]. As of 2011, still widely used as the implementations of the replacing <code>&lt;object&gt;</code> are not consistent between different browsers.


{{term|term=audio |content= {{XMLElement|audio|Audio}} }}
{{Anchor|area|area_tag}}{{HTMLElement|area|Area|end=no}}
{{defn|1= Adds playable ] to the page. The audio URL is determined using the <code>src</code> attribute. Supported audio formats vary from browser to browser.}}
:Specifies a ] area in a <code>map</code>.
:'''Standardized''' in ]; still current. {{defn|'''Standardized''' in ].}}


{{term|term=canvas |content= {{XMLElement|canvas|Canvas}} }}
{{Anchor|img|img_tag}}{{HTMLElement|img|Image|end=no}}
{{defn|1= {{Main|Canvas element}}
:Used by visual user agents to insert an ] in the document. The <code>src</code> attribute specifies the image URL. The required ] provides alternative text in case the image cannot be displayed.<ref>The alt attribute's text cannot be styled with markup; as a result, other methods of alternative text presentation, such as ], 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.</ref> (Though <code>alt</code> is intended as alternative text, Microsoft ] 7 and below render it as a ] if no <code>title</code> is given.<ref>{{cite web | url=http://msdn.microsoft.com/en-us/library/cc288472.aspx#access | title=What's New in Internet Explorer 8 – Accessibility and ARIA | publisher=Microsoft | work=MSDN | accessdate=2009-07-22}}</ref> ] and ], on the other hand, do not display the alt attribute at all.)<ref>{{citation|url=https://bugs.webkit.org/show_bug.cgi?id=5566 |title=Bug 5566 – ALT attribute value sometimes not displayed when image is missing |publisher=Bugs.webkit.org |date= |accessdate=2012-03-26}}</ref> '''img''' was proposed by ] and implemented in the ] web browser.<ref>{{citation|url=http://1997.webhistory.org/www.lists/www-talk.1993q1/0182.html |title=WWW-Talk Jan-Mar 1993: proposed new tag: IMG |publisher=1997.webhistory.org |date= |accessdate=2012-03-26}}</ref>
Adds a canvas whose contents can be edited with ]. Frequently used for online games.}}
:'''IMG''' existed in '']'', and was '''standardized''' in ]; still current.
{{defn|'''Standardized''' in ].}}


{{Anchor|map|map_tag}}{{XMLElement|map|Image Map|...|}} {{term|term=embed |content= {{XMLElement|embed|Embed}} }}
{{defn|1= Inserts a non-standard object (like applet) or external content (typically non-HTML) into the document.}}
:Specifies a client-side ].
{{defn|Deprecated in HTML 4 in favor of {{tag|object|o}}, but then was added back into the HTML5 specification<ref> {{Webarchive|url=https://web.archive.org/web/20121102014318/http://webdesign.about.com/od/htmltags/p/bltags_embed.htm |date=2012-11-02 }} {{tag|embed|o}}</ref><ref> about {{tag|embed|o}}</ref>}}
:'''Standardized''' in ]; still current.


{{Anchor|object|object_tag}}{{XMLElement|object|Object|...|}} {{term|term=img |content= {{XMLElement|img|Image|end=no}} }}
{{defn|1= Used by visual user agents to insert an ] in the document. The <code>src</code> attribute specifies the image URL. The required ] provides alternative text in case the image cannot be displayed.<ref>The alt attribute's text cannot be styled with markup; as a result, other methods of alternative text presentation, such as ], 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.</ref> (Though <code>alt</code> is intended as alternative text, Microsoft ] 7 and below render it as a ] if no <code>title</code> attribute is given.<ref>{{cite web | url=http://msdn.microsoft.com/en-us/library/cc288472.aspx#access | title=What's New in Internet Explorer 8 – Accessibility and ARIA | publisher=Microsoft
:Includes an ] in the page of the type specified by the <code>type</code> attribute. This may be in any ]-type the user agent understands, such as an embedded HTML page, a file to be handled by a plug-in such as ], a ] ], a sound file, etc.
| website=]
:'''Standardized''' in ]; still current.
| access-date=2009-07-22}}</ref> ] and ], on the other hand, do not display the alt attribute at all.)<ref>{{citation|url=https://bugs.webkit.org/show_bug.cgi?id=5566 |title=Bug 5566 – ALT attribute value sometimes not displayed when image is missing |publisher=Bugs.webkit.org |access-date=2012-03-26}}</ref> The {{tag|img|s}} element was first proposed by ] and implemented in the ] web browser.<ref>{{citation|url=http://1997.webhistory.org/www.lists/www-talk.1993q1/0182.html |title=WWW-Talk Jan-Mar 1993: proposed new tag: IMG |publisher=1997.webhistory.org |access-date=2012-03-26}}</ref>}}
{{defn|<code>IMG</code> existed in '']'', and was '''standardized''' in ]; still current.}}


{{term|term=map |content= {{XMLElement|map|Image Map}} }}
{{Anchor|param|param_tag}}{{HTMLElement|param|Object Parameter|...|end=no}}
{{defn|1= Specifies a client-side ].}}
:Originally introduced with '''applet''', this element is now used with, and should only occur as a child of '''object'''. It uses ] 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 '''param'''s.
:'''Standardized''' in ]; still current. {{defn|'''Standardized''' in ]; still current.}}

{{term|term=object |content= {{XMLElement|object|Object}} }}
{{defn|1= Includes an object in the page of the type specified by the <code>type</code> attribute. This may be in any ]-type the user agent understands, such as an embedded HTML page, a file to be handled by a plug-in such as ], a ] ], a sound file, etc.}}
{{defn|'''Standardized''' in ]; still current.}}

{{term|term=param |content= {{XMLElement|param|Object Parameter|end=no}} }}
{{defn|1= Originally introduced with {{tag|applet|o}}, this element is now used with {{tag|object|o}}, and should only occur as a child of {{tag|object|o}}. It uses ] 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 {{tag|param|s}} elements.}}
{{defn|'''Standardized''' in ]; still current.}}

{{term|term=source |content= {{XMLElement|source|Source}} }}
{{defn|1= Specifies different sources for audio or video. Makes use of the <code>src</code> attribute in a way similar to the {{tag|video|o}} and {{tag|audio|o}} elements.}}
{{defn|'''Standardized''' in ].}}

{{term|term=track |content= {{XMLElement|track|Track}} }}
{{defn|1= Provides text tracks, like subtitles and captions, for audio and video.}}
{{defn|'''Standardized''' in ].}}

{{term|term=video |content= {{XMLElement|video|Video}} }}
{{defn|1= Adds a playable ] to the page. The video URL is determined using the <code>src</code> attribute. Supported video formats vary from browser to browser.}}
{{defn|'''Standardized''' in ].}}
{{glossary end}}


===Forms=== ===Forms===
{{Main|Form (web)}} {{Main|Form (HTML)}}


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 (], client-side, or both) must be used to process the user’s input once it is submitted. 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 (], client-side, or both) must be used to process the user's input once it is submitted.


(These elements are either block or inline elements, but are collected here as their use is more restricted than other inline or block elements.) (These elements are either block or inline elements, but are collected here as their use is more restricted than other inline or block elements.)


{{glossary}}
{{Anchor|form|form_tag}}{{XMLElement|form|Form|...|atr={{XMLAttribute|action|Action|url|type=URL|need=required}}}}
{{term|term=form |content= {{XMLElement|form|Form|atr={{XMLAttribute|action|Action|url|type=URL|need=required}}}} }}
:Creates a ]. The '''form''' element specifies and operates the overall action of a form area, using the required '''action''' attribute.
{{defn|1= Creates a ]. The {{tag|form|o}} element specifies and operates the overall action of a form area, using the required <code>action</code> attribute.}}
:'''Standardized''' in ]; still current.
{{defn|'''Standardized''' in ]; still current.}}


{{Anchor|button|button_tag}}{{XMLElement|button|Button|...}} {{term|term=button |content= {{XMLElement|button|Button}} }}
:A generic form button which can contain a range of other elements to create complex buttons. {{defn|1= A generic form button which can contain a range of other elements to create complex buttons.}}
:'''Standardized''' in ]; still current. {{defn|'''Standardized''' in ]; still current.}}


{{Anchor|fieldset|fieldset_tag}}{{XMLElement|fieldset|Fieldset|...}} {{term|term=datalist |content= {{XMLElement|datalist|Data List}} }}
{{defn|1= A list of <code>option</code>s for use in form elements.}}
:A container for adding structure to forms. For example, a series of related controls can be grouped within a '''fieldset''', which can then have a '''legend''' added in order to identify their function.
:'''Standardized''' in ]; still current. {{defn|'''Standardized''' in ].}}


{{term|term=fieldset |content= {{XMLElement|fieldset|Fieldset}} }}
{{Anchor|input|input_tag}}{{HTMLElement|input|Input|...|end=no}}
{{defn|1= A container for adding structure to forms. For example, a series of related controls can be grouped within a {{tag|fieldset|o}}, which can then have a {{tag|legend|o}} added in order to identify their function.}}
:'''input''' elements allow a variety of standard form controls to be implemented.
:'''Standardized''' in ]; still current. {{defn|'''Standardized''' in ]; still current.}}


{{term|term=input |content= {{XMLElement|input|Input|end=no}} }}
:'''Input Types:'''
{{defn|1= {{tag|input|o}} elements allow a variety of standard form controls to be implemented.}}
:{{XMLAttribute|type|Field Type|checkbox|type=ENUM|need=implied}}
{{defn|'''Standardized''' in ]; still current.}}
::A ''']'''. Can be checked or unchecked.


{{defn|1='''Input Types:'''
:{{XMLAttribute|type|Field Type|radio|type=ENUM|need=implied}}
{{glossary}}
::A ''']'''. If multiple radio buttons are given the same name, the user will only be able to select one of them from this group.
{{term|term=checkbox |content= {{XMLAttribute|type|Field Type|checkbox|type=ENUM|need=implied}} }}
{{defn|A ''']'''. Can be checked or unchecked.}}


:{{XMLAttribute|type|Field Type|button|type=ENUM|need=implied}} {{term|term=radio |content= {{XMLAttribute|type|Field Type|radio|type=ENUM|need=implied}} }}
{{defn|A ''']'''. If multiple radio buttons are given the same name, the user will only be able to select one of them from this group.}}
::A general-purpose button. The element <code>&lt;button&gt;</code> is preferred if possible (i.e. if the client supports it) as it provides richer possibilities.


:{{XMLAttribute|type|Field Type|submit|type=ENUM|need=implied}} {{term|term=button |content= {{XMLAttribute|type|Field Type|button|type=ENUM|need=implied}} }}
{{defn|A general-purpose button. The element {{tag|button|o}} is preferred if possible (i.e., if the client supports it) as it provides richer possibilities.}}
::A '''submit''' button.


:{{XMLAttribute|type|Field Type|image|type=ENUM|need=implied}} {{term|term=submit |content= {{XMLAttribute|type|Field Type|submit|type=ENUM|need=implied}} }}
{{defn|A '''submit''' button.}}
::An '''image button'''. The image URL may be specified with the <code>src</code> attribute.


:{{XMLAttribute|type|Field Type|reset|type=ENUM|need=implied}} {{term|term=image |content= {{XMLAttribute|type|Field Type|image|type=ENUM|need=implied}} }}
::A '''reset button''' for resetting the form to default values. {{defn|An '''image button'''. The image URL may be specified with the <code>src</code> attribute.}}


:{{XMLAttribute|type|Field Type|text|type=ENUM|need=optional}} {{term|term=reset |content= {{XMLAttribute|type|Field Type|reset|type=ENUM|need=implied}} }}
{{defn|A '''reset button''' for resetting the form to default values.}}
::A '''one-line text input field'''. The <code>size</code> attribute specifies the default width of the input in character-widths. <code>maxlength</code> sets the maximum number of characters the user can enter (which may be greater than size).


:{{XMLAttribute|type|Field Type|password|type=ENUM|need=implied}} {{term|term=text |content= {{XMLAttribute|type|Field Type|text|type=ENUM|need=optional}} }}
{{defn|A '''one-line text input field'''. 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).}}
::A variation of '''text'''. The difference is that text typed in this field is ''masked''&nbsp;— characters are displayed as an asterisk, a dot or another replacement. It should be noted, however, that the password is still submitted to the server as ''clear text'', so an underlying secure transport layer like ] is needed if confidentiality is a concern.


:{{XMLAttribute|type|Field Type|file|type=ENUM|need=implied}} {{term|term=search |content= {{XMLAttribute|type|Field Type|search|type=ENUM|need=implied}} }}
{{defn|A variation of <code>text</code> which produces a search bar.}}
::A ] field (for uploading files to a server).


:{{XMLAttribute|type|Field Type|hidden|type=ENUM|need=implied}} {{term|term=password |content= {{XMLAttribute|type|Field Type|password|type=ENUM|need=implied}} }}
{{defn|A variation of <code>text</code>. The difference is that text typed in this field is {{em|masked}} – characters are displayed as an asterisk, a dot, or another replacement. The password is still submitted to the server as ], so an underlying secure ] like ] is needed if confidentiality is a concern.}}
::'''hidden''' 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.


{{term|term=file |content= {{XMLAttribute|type|Field Type|file|type=ENUM|need=implied}} }}
{{Anchor|isindex|isindex_tag}}{{HTMLElement|isindex|Index|end=no|deprecated=1}}
{{defn|A ] field (for uploading files to a server).}}
:'''<code>isindex</code>''' could either appear in the document head or in the body, but only once in a document.
:'''Isindex''' operated as a primitive HTML search form; but was ] obsoleted by more advanced HTML forms introduced in the early to mid-1990s. Represents a set of hyperlinks composed of a base URI, an ] and ] keywords separated by ]s.
:'''ISINDEX''' existed in '']''; '''standardized''' in ]; '''deprecated''' in ]; '''invalid''' in ].


{{Anchor|label|label_tag}}{{XMLElement|label|Label|...|atr={{XMLAttribute|for|For|id|type=ENUM|need=implied}}}} {{term|term=tel |content= {{XMLAttribute|type|Field Type|tel|type=ENUM|need=implied}} }}
{{defn|A variation of <code>text</code> for ].}}
:Creates a label for a form input (e.g. radio button). Clicking on the label fires a click on the matching input.
:'''Standardized''' in ]; still current.


{{term|term=email |content= {{XMLAttribute|type|Field Type|email|type=ENUM|need=implied}} }}
{{Anchor|legend|legend_tag}}{{XMLElement|legend|Legend|...}}
{{defn|A variation of <code>text</code> for ].}}
:A legend (caption) for a '''fieldset'''.
:'''Standardized''' in ]; still current.


{{Anchor|option|option_tag}}{{HTMLElement|option|Selection Option|...|atr={{XMLAttribute|value|Value|x|type=ANY|need=required}}|end=no}} {{term|term=url |content= {{XMLAttribute|type|Field Type|url|type=ENUM|need=implied}} }}
:Creates an item in a <code>select</code> list. {{defn|A variation of <code>text</code> for ].}}
:'''Standardized''' in ]; still current.


{{term|term=date |content= {{XMLAttribute|type|Field Type|date|type=ENUM|need=implied}} }}
{{Anchor|optgroup|optgroup_tag}}{{HTMLElement|optgroup|Options Group|...}}
{{defn|A date selector.}}
:Identifies a group of '''option'''s in a '''select''' list.
:'''Standardized''' in ]; still current.


{{Anchor|select|select_tag}}{{XMLElement|select|Selection List|...|atr={{XMLAttribute|name|Name|xyz|type=NMTOKEN|need=implied}}}} {{term|term=time |content= {{XMLAttribute|type|Field Type|time|type=ENUM|need=implied}} }}
{{defn|A time selector.}}
:Creates a selection list, from which the user can select a single option. May be rendered as a dropdown list.
:'''Standardized''' in ]; still current.


{{Anchor|textarea|textarea_tag}}{{XMLElement|textarea|Multiline Textarea|...|atr={{XMLAttribute|rows|Rows|8|type=INT}}}} {{term|term=number |content= {{XMLAttribute|type|Field Type|number|type=ENUM|need=implied}} }}
{{defn|A variation of <code>text</code> for numbers.}}
:A multiple-line text area, the size of which is specified by <code>cols</code> (where a ''col'' is a one-character width of text) and <code>rows</code> ]. The content of this element is restricted to plain text, which appears in the text area as default text when the page is loaded.

:'''Standardized''' in ]; still current.
{{term|term=range |content= {{XMLAttribute|type|Field Type|range|type=ENUM|need=implied}} }}
{{defn|Produces a slider for that returns a number, but the number is not visible to the user.}}

{{term|term=color |content= {{XMLAttribute|type|Field Type|color|type=ENUM|need=implied}} }}
{{defn|A color picker.}}

{{term|term=hidden |content= {{XMLAttribute|type|Field Type|hidden|type=ENUM|need=implied}} }}
{{defn|<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.}}
{{glossary end}}
}}

{{term|term=isindex |content= {{XMLElement|isindex|Index|end=no|deprecated=1}} }}
{{defn|1= {{tag|isindex|s}} could either appear in the document head or in the body, but only once in a document.

{{tag|isindex|s}} operated as a primitive HTML search form; but was {{lang|la|]}} obsoleted by more advanced HTML forms introduced in the early to mid-1990s. Represents a set of hyperlinks composed of a base URI, an ] and ] keywords separated by ]s.}}
{{defn|<code>ISINDEX</code> existed in '']''; '''standardized''' in ]; '''deprecated''' in ]; '''invalid''' in ].}}

{{term|term=keygen |content= {{XMLElement|keygen|Key pair generator|deprecated=1}} }}
{{defn|1= A key pair generator.}}
{{defn|'''Standardized''' in ], but removed in HTML 5.2.}}

{{term|term=label |content= {{XMLElement|label|Label|atr={{XMLAttribute|for|For|id|type=ENUM|need=implied}}}} }}
{{defn|1= Creates a label for a form input, such as <code>radio</code>. Clicking on the label fires a click on the matching input.}}
{{defn|'''Standardized''' in ]; still current.}}

{{term|term=legend |content= {{XMLElement|legend|Legend}} }}
{{defn|1= A legend (caption) for a {{tag|fieldset|o}}.}}
{{defn|'''Standardized''' in ]; still current.}}

{{term|term=meter |content= {{XMLElement|meter|Meter}} }}
{{defn|1= 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>.}}
{{defn|'''Standardized''' in ].}}

{{term|term=option |content= {{XMLElement|option|Select List Option|atr={{XMLAttribute|value|Value|x|type=ANY|need=required}}}} }}
{{defn|1= Creates an item in a {{tag|select|o}} list.}}
{{defn|'''Standardized''' in ]; still current.}}

{{term|term=optgroup |content= {{XMLElement|optgroup|Options Group}} }}
{{defn|1= Identifies a group of {{tag|option|o}} elements in a {{tag|select|o}} list.}}
{{defn|'''Standardized''' in ]; still current.}}

{{term|term=output |content= {{XMLElement|output|Output}} }}
{{defn|1= The value of a form element.}}
{{defn|'''Standardized''' in ].}}

{{term|term=progress |content= {{XMLElement|progress|Progress Bar}} }}
{{defn|1= A bar for showing the progress of an action.}}
{{defn|'''Standardized''' in ].}}

{{term|term=select |content= {{XMLElement|select|Selection List|atr={{XMLAttribute|name|Name|xyz|type=NMTOKEN|need=implied}}}} }}
{{defn|1= Creates a selection list, from which the user can select a single option. May be rendered as a dropdown list.}}
{{defn|'''Standardized''' in ]; still current.}}

{{term|term=textarea |content= {{XMLElement|textarea|Multiline Textarea|atr={{XMLAttribute|rows|Rows|8|type=INT}}}} }}
{{defn|1= 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> ]. The content of this element is restricted to plain text, which appears in the text area as default text when the page is loaded.}}
{{defn|'''Standardized''' in ]; still current.}}
{{glossary end}}


===Tables=== ===Tables===
The format of HTML Tables was proposed in the ] and the later RFC 1942 '']''. They were inspired on the ]. 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 ''block'' nor ''inline'' elements.) The format of HTML Tables was proposed in the ] and the later RFC 1942 '']''. They were inspired by the ]. 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 ''block'' nor ''inline'' elements.)

{{glossary}}
{{term|term=table |content= {{XMLElement|table|Table}} }}
{{defn|1= Identifies a table. Several ] 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.}}
{{defn|Proposed in the ]; '''Standardized''' in ]; still current.}}

{{term|term=tr |content= {{XMLElement|tr|Table Row}} }}
{{defn|1= Contains a row of cells in a {{tag|table|o}}.}}
{{defn|Proposed in the ]; '''Standardized''' in ]; still current.}}

{{term|term=th |content= {{XMLElement|th|Table Header Cell}} }}
{{defn|1= A {{tag|table|o}} header cell; contents are conventionally displayed bold and centered. An ] user agent may use a louder voice for these items.}}
{{defn|Proposed in the ]; '''Standardized''' in ]; still current.}}

{{term|term=td |content= {{XMLElement|td|Table Data Cell}} }}
{{defn|1= A {{tag|table|o}} data cell.}}
{{defn|Proposed in the ]; '''Standardized''' in ]; still current.}}

{{term|term=colgroup |content= {{XMLElement|colgroup|Column Group}} }}
{{defn|1= Specifies a ] in a {{tag|table|o}}.}}
{{defn|Proposed in ]; '''Standardized''' in ]; still current.}}

{{term|term=col |content= {{XMLElement|col|Table Column}} }}
{{defn|1= Specifies a column in a {{tag|table|o}}.}}
{{defn|Proposed in ]; '''Standardized''' in ]; still current.}}

{{term|term=caption |content= {{XMLElement|caption|Table Caption}} }}
{{defn|1= Specifies a caption for a {{tag|table|o}}.}}
{{defn|Proposed in the ]; '''Standardized''' in ]; still current.}}

{{term|term=thead |content= {{XMLElement|thead|Table Header}} }}
{{defn|1= Specifies the header part of a {{tag|table|o}}. This section may be repeated by the user agent if the table is split across pages (in printing or other paged media).}}
{{defn|Proposed in ]; '''Standardized''' in ]; still current.}}

{{term|term=tbody |content= {{XMLElement|tbody|Table Body}} }}
{{defn|1= Specifies a body of data for a {{tag|table|o}}.}}
{{defn|Proposed in ]; '''Standardized''' in ]; still current.}}


{{term|term=tfoot |content= {{XMLElement|tfoot|Table Footer}} }}
;{{Anchor|table|table_tag}}{{HTML element|name=table|tags=all|content=...}}
{{defn|1= Specifies the footer part of a {{tag|table|o}}. Like {{tag|thead|o}}, this section may be repeated by the user agent if the table is split across pages (in printing or other paged media).}}
:Identifies a table. Several ] are possible in HTML Transitional, but most of these are invalid in HTML Strict and can be replaced with stylesheets. The '''summary''' attribute is however informally required for accessibility purposes, though its usage is not simple.
:Proposed in the ]; '''Standardized''' in ]; still current. {{defn|Proposed in ]; '''Standardized''' in ]; still current.}}
{{glossary end}}
;{{Anchor|tr|tr_tag}}{{HTML element|name=tr|tags=end|content=...}}
:Contains a row of cells in a table.
:Proposed in the ]; '''Standardized''' in ]; still current.
;{{Anchor|th|th_tag}}{{HTML element|name=th|tags=end|content=...}}
:A table header cell; contents are conventionally displayed bold and centered. An aural user agent may use a louder voice for these items.
:Proposed in the ]; '''Standardized''' in ]; still current.
;{{Anchor|td|td_tag}}{{HTML element|name=td|tags=end|content=...}}
:A table data cell.
:Proposed in the ]; '''Standardized''' in ]; still current.
;{{Anchor|colgroup|colgroup_tag}}{{HTML element|name=colgroup|tags=neither|content=...}}
:Specifies a column group in a table.
:Proposed in ]; '''Standardized''' in ]; still current.
;{{Anchor|col|col_tag}}{{HTML element|name=col|tags=void}}
:Specifies a column in a table.
:Proposed in ]; '''Standardized''' in ]; still current.
;{{Anchor|caption|caption_tag}}{{HTML element|name=caption|tags=all|content=...}}
:Specifies a caption for a table.
:Proposed in the ]; '''Standardized''' in ]; still current.
;{{Anchor|thead|thead_tag}}{{HTML element|name=thead|tags=end|content=...}}
:Specifies the header part of a table. This section may be repeated by the user agent if the table is split across pages (in printing or other paged media).
:Proposed in ]; '''Standardized''' in ]; still current.
;{{Anchor|tbody|tbody_tag}}{{HTML element|name=tbody|tags=neither|content=...}}
:Specifies a body of data for the table.
:Proposed in ]; '''Standardized''' in ]; still current.
;{{Anchor|tfoot|tfoot_tag}}{{HTML element|name=tfoot|tags=end|content=...}}
:Specifies the footer part of a table. Like <code><thead></code>, this section may be repeated by the user agent if the table is split across pages (in printing or other paged media).
:Proposed in ]; '''Standardized''' in ]; still current.


==Frames== ==Frames==
{{Main|Framing (World Wide Web)}} {{Main|Frame (World Wide Web)}}


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,{{Citation needed|date=December 2012}} 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>iframe</code> element) are only allowed in HTML 4.01 Frameset. 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,<ref>{{cite web|url=http://www.washington.edu/doit/are-frames-accessible|title=Are frames accessible?|quote=...frames do present additional usability challenges that are unique to users with disabilities, particularly those who use screen readers.}}</ref> 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 {{tag|iframe|o}} 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 ] and ] use iframes to display content (]) on third party websites. Google ] uses iframes to display banners on third party websites.


In HTML 4.01, a document may contain a <code>head</code> and a <code>body</code> ''or'' a <code>head</code> and a <code>frameset</code>, but not both a <code>body</code> and a <code>frameset</code>. However, '''iframe''' can be used in a normal document body. In HTML 4.01, a document may contain a {{tag|head|o}} and a {{tag|body|o}} {{em|or}} a {{tag|head|o}} and a {{tag|frameset|o}}, but not both a {{tag|body|o}} and a {{tag|frameset|o}}. However, {{tag|iframe|o}} can be used in a normal document body.


{{glossary}}
;{{Anchor|frameset|frameset_tag}}{{HTML element|name=frameset|tags=all|content=...}}
{{term|term=frameset |content= {{XMLElement|frameset|Frameset|deprecated=1}} }}
:Contains the set of frame elements for a document. The layout of frames is given by comma separated lists in the <code>rows</code> and <code>cols</code> ].
{{defn|1= Contains the set of {{tag|frame|s}} elements for a document. The layout of frames is given by comma separated lists in the <code>rows</code> and <code>cols</code> ].}}
:'''Standardized''' in ] Frameset, '''obsolete''' in HTML 5.
{{defn|'''Standardized''' in ] Frameset, '''obsolete''' in HTML5.}}
;{{Anchor|frame|frame_tag}}{{HTML element|name=frame|tags=void}}
:Defines a single frame, or region, within the <code>frameset</code>. A separate document is linked to a frame using the <code>src</code> attribute inside the <code>frame</code> element.
:'''Standardized''' in ] Frameset, '''obsolete''' in HTML 5.
;{{Anchor|noframes|noframes_tag}}{{HTML element|name=noframes|tags=all|content=...}}
:Contains normal HTML content for user agents that don't support frames.
:'''Standardized''' in ] Transitional, '''obsolete''' in HTML 5.
;{{Anchor|iframe|iframe_tag}}{{HTML element|name=iframe|tags=all|content=...}}
:An inline frame places another HTML document in a frame. Unlike an <code>object</code> element, an inline frame 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 iframes.
:First introduced by Microsoft Internet Explorer in 1997, '''standardized''' in ] Transitional, '''allowed''' in HTML 5.


{{term|term=frame |content= {{XMLElement|frame|Frame|end=no|deprecated=1}} }}
===Longdesc===
{{defn|1= Defines a single frame, or region, within the {{tag|frameset|o}}. A separate document is linked to a frame using the <code>src</code> attribute inside the {{tag|frame|s}} element.}}
In ], '''longdesc''' is an attribute used within the ], ], or ]. It is supposed to be an ] to a document that provides a '''long description''' for the image, frame, or iframe in question.<ref>{{cite web|url=http://www.w3.org/TR/REC-html40/struct/objects.html|title=Objects, Images, and Applets|publisher=W3C|accessdate=2008-12-20}}</ref>
{{defn|'''Standardized''' in ] Frameset, '''obsolete''' in HTML5.}}


{{term|term=noframes |content= {{XMLElement|noframes|Frame Support Fallback|deprecated=1}} }}
Longdesc was designed to be used by ]s to display image information for computer users with ] issues, such as the blind or visually impaired, and is widely implemented by both web browsers and screen readers.<ref>{{cite web|url=http://www.w3.org/html/wg/ChangeProposals/InstateLongdesc/Implementation|title=InState Longdesc|accessdate=2011-09-05}}</ref> Some developers object that
{{defn|1= Contains normal HTML content for user agents that do not support {{tag|frame|s}} elements.}}
<ref>{{cite web|url=http://www.webaim.org/techniques/images/longdesc.php#longdesc|title=Creating Accessible Images|publisher=WebAim|accessdate=2008-12-20}}</ref> 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, and have used this argument to recommend dropping longdesc.<ref>{{citation|url=http://wiki.whatwg.org/Longdesc_usage |title=Longdesc usage - WHATWG Wiki |publisher=Wiki.whatwg.org |date= |accessdate=2012-03-26}}</ref> The publishing industry has responded, advocating the retention of longdesc.<ref>{{cite web|url=http://www.w3.org/Bugs/Public/show_bug.cgi?id=13461|title=Bug 13461 - Commentary on Issue #30 (longdesc) from the Association of American Publishers |accessdate=2011-09-05}}</ref>
{{defn|'''Standardized''' in ] Transitional, '''obsolete''' in HTML5.}}

{{term|term=iframe |content= {{XMLElement|iframe|Inline Frame}} }}
{{defn|1= An inline frame places another HTML document in a frame. Unlike an {{tag|object|s}} element, an {{tag|iframe|o}} 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 {{tag|iframe|s}}, an inline HTML code is embedded to a frame using the <code>srcdoc</code> attribute inside the {{tag|iframe|s}} element.}}
{{defn|First introduced by Microsoft Internet Explorer in 1997, '''standardized''' in ] Transitional, '''allowed''' in HTML5.}}
{{glossary end}}

===<code>longdesc</code> attribute===
In ], '''<code>longdesc</code>''' is an attribute used within the {{tag|img|s}}, {{tag|frame|s}}, or {{tag|iframe|o}} elements. It is supposed to be a ]{{refn|group=note|Strictly an ], not a URL; although URLs are a subset of IRIs.}} to a document that provides a '''long description''' for the image, frame, or iframe in question.<ref>{{cite web|url=http://www.w3.org/TR/REC-html40/struct/objects.html|title=Objects, Images, and Applets|publisher=W3C|access-date=2008-12-20}}</ref> This attribute should contain a URL, {{em|not}} – as is commonly mistaken – the text of the description itself.

<code>longdesc</code> was designed to be used by ]s to display image information for computer users with ] issues, such as the blind or ], and is widely implemented by both web browsers and screen readers.<ref>{{cite web|url=http://www.w3.org/html/wg/ChangeProposals/InstateLongdesc/Implementation|title=InState Longdesc|access-date=2011-09-05}}</ref> Some developers object that<ref>{{cite web|url=http://www.webaim.org/techniques/images/longdesc.php#longdesc|title=Creating Accessible Images|publisher=WebAim|access-date=2008-12-20}}</ref> 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>.<ref>{{citation|url=http://wiki.whatwg.org/Longdesc_usage |title=Longdesc usage - WHATWG Wiki |publisher=Wiki.whatwg.org |access-date=2012-03-26}}</ref> The publishing industry has responded, advocating the retention of <code>longdesc</code>.<ref>{{cite web|url=http://www.w3.org/Bugs/Public/show_bug.cgi?id=13461|title=Bug 13461 - Commentary on Issue #30 (longdesc) from the Association of American Publishers |access-date=2011-09-05}}</ref>


====Example==== ====Example====
<syntaxhighlight lang="html4strict"> <syntaxhighlight lang="html">
<img src="Hello.jpg" longdesc="description.html"> <img src="Hello.jpg" longdesc="description.html">
</syntaxhighlight> </syntaxhighlight>
<br />Content of <code>description.html</code>:

<syntaxhighlight lang="html">
Content of <code>description.html</code>:
<br />
<syntaxhighlight lang="html4strict">
...
<p>This is an image of a two-layered birthday cake.</p> <p>This is an image of a two-layered birthday cake.</p>
... ...
Line 908: Line 997:


====Linking to the long description in the text==== ====Linking to the long description in the text====
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>img</code> element whenever possible, as this can also aid sighted users. 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 {{tag|img|s}} element whenever possible, as this can also aid sighted users.


=====Example===== =====Example=====
<syntaxhighlight lang="html4strict"> <syntaxhighlight lang="html">
<img src="Hello.jpg" longdesc="description.html" /> [<a href= <img src="Hello.jpg" longdesc="description.html" /> [<a href=
"description.html" title="long description of the image">D</a>] "description.html" title="long description of the image">D</a>]
Line 917: Line 1,006:


==Historic elements== ==Historic elements==
The following elements were part of the early HTML developed by ] from 1989 to 1991; they are mentioned in ''HTML Tags'', but deprecated in ''HTML 2.0'' and were never part of HTML standards.
{{Main|Comparison of layout engines (Non-standard HTML)}}

The following elements were part of the early HTML developed by ] from 1989–91; they are mentioned in ''HTML Tags'', but deprecated in ''HTML 2.0'' and were never part of HTML standards.
{{glossary}}
{{term|term=listing |content= {{XMLElement|listing|HTML Listing|deprecated=1}} }}
{{defn|1= This element displayed the text inside the tags in a monospace font and without interpreting the HTML. The ] specification recommended rendering the element at up to 132 characters per line.}}
{{defn|'''Deprecated''' in ]; '''obsolete''' in ].<ref name=WHATWG-deprecated>{{cite web |url= https://html.spec.whatwg.org/multipage/obsolete.html#non-conforming-features |title= Obsolete&nbsp;– Non-conforming features |website= HTML Living Standard |publisher= ] |access-date= August 7, 2022 |date= July 22, 2022}}</ref>}}

{{term|term=plaintext |content= {{XMLElement|plaintext|Plaintext|deprecated=1|end=no|noslash=yes}} }}
{{defn|1= {{tag|plaintext|open}} 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 ].}}
{{defn|{{tag|plaintext|open}} existed in '']''; '''deprecated''' in ]; '''invalid''' in ].}}

{{term|term=xmp |content= {{XMLElement|xmp|HTML Example|deprecated=1}} }}
{{defn|1= This element displayed the text inside the tags in a monospace font and without interpreting the HTML. The ] specification recommended rendering the element at 80 characters per line.}}
{{defn|'''Deprecated''' in ]; '''obsolete''' in ].<ref>{{cite web|url=https://developer.mozilla.org/en-US/docs/Web/HTML/Element/xmp|title=&lt;xmp&gt;|website=MDN Web Docs|date=24 February 2023 }}</ref>}}


{{term|term=nextid |content= {{XMLElement|nextid|NeXT ID|deprecated=1|end=no|noslash=yes}} }}
;{{Anchor|listing|listing_tag}}{{HTML element|name=listing|tags=all|content=...}} (obsolete)
{{defn|1= This element enabled NeXT web designing tool to generate automatic NAME labels for its anchors and was itself automatically generated.<ref name=WHATWG-deprecated />}}
:
{{defn|{{tag|nextid|open}} existed in '']'' (described as obsolete); '''deprecated''' in ]; '''invalid''' in ] and later.}}
;{{Anchor|plaintext|plaintext_tag}}<code class="html htmlelement">&lt;plaintext&gt;</code> (obsolete)
{{glossary end}}
:
;{{Anchor|xmp|xmp_tag}}{{HTML element|name=xmp|tags=all|content=...}} (obsolete)
:These elements were used to show fixed-width text; their use was replaced by <code>pre</code>.
:'''<code>plaintext</code>''' ''cannot'' have an end tag – it terminates the markup and causes the rest of the document to be parsed as if it were ].
:These existed in '']''; '''deprecated''' in ]; '''invalid''' in ].
;{{Anchor|nextid|nextid_tag}}{{HTML element|name=nextid|tags=all|content=...}} (obsolete)
:This element related to the original NeXT http server, and was not used once the web had spread to other systems.
:<code>nextid</code> existed in '']'' (described as obsolete); '''deprecated''' in ]; '''invalid''' in ] and later.


==Non-standard elements== ==Non-standard elements==
{{Quote box
{{Main|Comparison of layout engines (Non-standard HTML)}}
| width = 250px
| class = noprint
| quote = <div style="font-size: 100%; color:#FF00CC;">{{marquee|This is the new WikiPedia!}}</div>
| source = Example of marquee text from the ] (accomplished via CSS; the &lt;marquee&gt; tag itself is deprecated and no longer works in most browsers)
}}
{{Quote box
| width = 250px
| class = noprint
| quote = {{blink|]}}
| source = Example of blinking text (accomplished via CSS; the &lt;blink&gt; tag itself is deprecated and no longer works in most browsers) with link to page. Not to be confused with ], this page contains the earliest surviving edit on the English Misplaced Pages.}}
This section lists some widely used obsolete elements, which means they are not used in ] code. They may not be supported in all user agents. This section lists some widely used obsolete elements, which means they are not used in ] code. They may not be supported in all user agents.
;{{Anchor|blink}}{{HTML element|name=blink|link=Blink element|tags=all|content=...}} (obsolete)
:Causes text to blink. Can be done with CSS where supported: <code>{text-decoration: blink}</code> (This effect may have negative consequences for people with ];<ref name="WCAG">{{cite web|url=http://www.w3.org/TR/WCAG10/|title=Web Content Accessibility Guidelines 1.0|first1=Wendy|last1=Chisholm|first2=Gregg|last2=Vanderheiden|first3=Ian|last3=Jacobs|publisher=]|date=1999-05-05|accessdate=2010-07-20}}</ref> its use on the public Internet should follow the appropriate guidelines.)
:<code>blink</code> originated in ] and is mostly recognized by its descendants, including ]; '''deprecated''' or '''invalid''' in ] and later. Note that the replacement CSS tag, while standard, is not required to be supported.
;{{Anchor|marquee}}{{HTML element|name=marquee|link=Marquee element|tags=all|content=...}}
:Creates scrolling text. Can be done with scripting instead. (This effect may have negative consequences for people with ];<ref name="WCAG" /> its use on the public Internet should follow the appropriate guidelines.) There are three options, including '''Alternate''', '''Scroll''' and '''slide'''. '''Scrolldelay''' can also be added.
:<code>marquee</code> originated in ]; '''deprecated''' or '''invalid''' in ] and later.
;{{Anchor|nobr}}{{HTML element|name=nobr|tags=all|content=...}}
: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>{white-space: nowrap;}</code>
:<code>nobr</code> is a proprietary element which is recognized by most browsers for compatibility reasons; '''deprecated''' or '''invalid''' in ] and later.
;{{Anchor|noembed}}{{HTML element|name=noembed|tags=all|content=...}} (obsolete)
:Specifies alternative content, if the embed cannot be rendered. Replaced by the content of the <code>embed</code> or <code>object</code> element.


{{glossary}}
==Previously obsolete but added back in HTML 5==
{{term|term=blink |content= {{XMLElement|blink|Blink|deprecated=1}} }}
;{{Anchor|embed}}{{HTML element|name=embed|tags=all|content=...}}
{{defn|1= {{Main|Blink element}}
:Inserts a non-standard object (like applet) or external content (typically non-HTML) into the document. Deprecated in HTML 4 in favor of the <code>object</code> tag, but then was added back into the HTML 5 specification<ref><nowiki><embed></nowiki></ref><ref> about <nowiki><embed></nowiki></ref>
Causes text to blink. Introduced in imitation of the ]s. Can be done with CSS where supported: {{code|lang=css|code={text-decoration: blink} }} (This effect may have negative consequences for people with ];<ref name="WCAG">{{cite web|url=http://www.w3.org/TR/WCAG10/|title=Web Content Accessibility Guidelines 1.0|first1=Wendy|last1=Chisholm|first2=Gregg|last2=Vanderheiden|first3=Ian|last3=Jacobs|publisher=World Wide Web Consortium|date=1999-05-05|access-date=2010-07-20}}</ref> its use on the public Internet should follow the appropriate guidelines.)}}
{{Anchor|menu|menu_tag}}'''{{HTML element|name=menu|tags=all|content=...}}'''
{{defn|{{code|lang=html|code=<blink>}} originated in ] and is mostly recognized by its descendants, including ]; '''deprecated''' or '''invalid''' in ] and later. The replacement CSS tag, while standard, is not required to be supported.}}
:A menu listing. Should be more compact than a <code>&lt;ul&gt;</code> list.

:<code>MENU</code> existed in '']'', and was '''standardized''' in ]; '''deprecated''' in ]; '''invalid''' in ]; but then redefined in ].
{{term|term=layer |content= {{XMLElement|layer|Layer|deprecated=1}} }}
{{defn|1= {{Main|Layer element}}
Creates an absolute positioned and framed layer. Can be done with frames and/or CSS instead. There are attributes, including '''ID''', '''LEFT''', '''TOP''', '''PAGEX''', '''PAGEY''', '''SRC''', '''Z-INDEX''', '''ABOVE''', '''WIDTH''', '''HEIGHT''', '''BELOW''', '''CLIP''', '''VISIBILITY''' and '''CLIP'''.}}
{{defn|{{code|lang=html|code=<layer>}} originated in ]; '''deprecated''' or '''invalid''' in ] and later.}}

{{term|term=marquee |content= {{XMLElement|marquee|Marquee|deprecated=1}} }}
{{defn|1= {{Main|Marquee element}}
Creates scrolling text. Can be done with scripting instead. (This effect may have negative consequences for people with ];<ref name="WCAG" /> its use on the public Internet should follow the appropriate guidelines.) There are three options, including '''Alternate''', '''Scroll''' and '''slide'''. '''Scrolldelay''' can also be added.}}
{{defn|{{code|lang=html|code=<marquee>}} originated in ]; '''deprecated''' or '''invalid''' in ] and later.}}

{{term|term=nobr |content= {{XMLElement|nobr|No Break|deprecated=1}} }}
{{defn|1= 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|lang=css|code={white-space: nowrap;} }}}}
{{defn|{{code|lang=html|code=<nobr>}} is a proprietary element which is recognized by most browsers for compatibility reasons; '''deprecated''' or '''invalid''' in ] and later.}}

{{term|term=noembed |content= {{XMLElement|noembed|Embed Fallback|deprecated=1}} }}
{{defn|1= Specifies alternative content, if the embed cannot be rendered. Replaced by the content of the {{code|lang=html|code=<embed>}} or {{code|lang=html|code=<object>}} element.}}
{{glossary end}}


==Comments== ==Comments==
{{Clear}}
;<code>&lt;!-- A Comment --></code>
{{glossary}}
:A ] can appear anywhere in a document, even before the doctype, but not in other tags. (However, placing comments – or indeed any characters except for whitespace – before the doctype will cause Internet Explorer 6 to use ] for the document.) None of its enclosed contents are processed. For compatibility with some pre-1995 browsers, the contents of <code>style</code> and <code>script</code> elements are still sometimes surrounded by comment delimiters.
{{term|term=comment |content= {{code|lang=html|code=<<nowiki />!-- A Comment -->}} }}
:Comments do not nest: the markup <code>&lt;!--Xbegin&lt;!--Y-->Xend--></code> will yield the comment <code>Xbegin&lt;!--Y</code> and the text <code>Xend--></code> after it.
{{defn|1=
<p>A ] in HTML (and related XML, SGML and SHTML) uses the same syntax as the ] or ], 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|lang=html|code=<!<nowiki />--}}(the beginning of a comment),{{code|lang=html|code=-->}}(this ends the comment so it trivially follows it can not appear inside it) and {{code|lang=html|code=--!>}}. Additionally, the strings {{code|lang=html|code=>}} and {{code|lang=html|code=->}} cannot appear at the beginning of a comment and {{code|lang=html|code=<!-}} cannot appear at the end.<ref>{{cite web|url=https://html.spec.whatwg.org/multipage/syntax.html#comments|title=HTML standard|website=html.spec.whatwg.org}}</ref></p>

<p>As a result, the markup {{code|lang=html|code=<!<nowiki />--Xbegin<<nowiki />!--Y-->Xend-->}} is ill-formed and will yield the comment {{samp|{{nobr|Xbegin&lt;!--Y}}}} and the text {{samp|{{nobr|Xend--&gt;}}}} after it, or sometimes just {{samp|Xend--&gt;}}, 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>{{nobr|1=&lt;span id="x1"}}{{nobr|&lt;!--for}} "extension {{nobr|one"--&gt;}} {{nobr|1=style="..."&gt;}}</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>
* Placing comments – or indeed any characters except for white-space – before the <code>doctype</code> will cause Internet Explorer 6 to use ] for the HTML page. None of the <code>doctype</code> information will be processed.
* For compatibility with some pre-1995 browsers, the contents of {{tag|style|o}} and {{tag|script|o}} 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>{{nobr|&lt;--}} {{nobr|...}} {{nobr|--&gt;}}</code>.
* The ] HTML editor, in versions 1.7.{{var|x}}, makes comments that are not embedded in the syntax structure; {{code|lang=html|code=<style> ... {comment tags} ...</style>}} will show up on-screen. Other HTML editors may have this same defect.
}}
{{glossary end}}

==See also==
* ]
* ]

== Notes ==
{{Reflist|group=note|liststyle=lower-roman}}


==References== ==References==
<references/>
{{reflist|33em}}


==Bibliography== ==Bibliography==
Line 966: Line 1,102:


===HTML standards=== ===HTML standards===
;<span id="HTML20">HTML 2.0:</span> ;<span id="HTML20">HTML 2.0{{colon}}</span>
:{{cite IETF
|last1=Berners-Lee |first1=Tim |author1-link=Tim Berners-Lee
|last2=Connolly |first2=Dan |author2-link=Dan Connolly (computer scientist)
|title=Hypertext Markup Language - 2.0 (RFC 1866)
|publisher=]
|date=November 1995
|rfc=1866
|access-date=2009-03-24}}
;<span id="HTML32">HTML 3.2{{colon}}</span>
:{{cite web :{{cite web
|last=Raggett |first=Dave |author-link=Dave Raggett
| author = Berners-Lee, T., and Connolly, D.
|title=HTML 3.2 Reference Specification
| title = Hypertext Markup Language - 2.0 (RFC 1866)
| publisher = ] |publisher=]
| date = 1995-11 |date=1997-01-14
| url = http://tools.ietf.org/html/rfc1866 |url= http://www.w3.org/TR/REC-html32-19970114
| accessdate = 2009-03-24}} |access-date=2009-03-27}}
;<span id="HTML401">HTML 4.01{{colon}}</span>

;<span id="HTML32">HTML 3.2:</span>
:{{cite web :{{cite web
| last = Raggett |last1=Raggett |first1=Dave |author-link=Dave Raggett
|last2=Le Hors |first2=Arnaud
| first = Dave
|last3=Jacobs |first3=Ian
| authorlink = Dave Raggett
| title = HTML 3.2 Reference Specification |title=HTML 4.01 Specification
| publisher = ] |publisher=]
| date = 1997-01-14 |date=1999-12-24
| url = http://www.w3.org/TR/REC-html32-19970114 |url= https://www.w3.org/TR/html4/
|access-date=2009-03-24}} (HTML 4.01 superseded (1998), which was never widely implemented, and all earlier versions. Superseded in turn on 2018-03-27 by ]).
| accessdate = 2009-03-27}}
;<span id="XHTML10">XHTML 1.0{{colon}}</span>

;<span id="HTML401">HTML 4.01:</span>
:{{cite web :{{cite web
|title=XHTML 1.0: The Extensible HyperText Markup Language (Second Edition)
| first1 = Dave
|version=Revised version
| last1 = Raggett
|publisher=]
| last2 = Le Hors
|date=2002-08-01
| first2 = A
|orig-date=2000
| last3 = Jacobs
|url= https://www.w3.org/TR/xhtml1/
| first3= I.
|access-date=2009-03-24}}
| title = HTML 4.01 Specification
;<span id="XHTML11">XHTML 1.1{{colon}}</span>
| publisher = ]
| date = 1999-12-24
| url = http://www.w3.org/TR/1999/REC-html401-19991224/
| accessdate = 2009-03-24}} ''(HTML 4.01 is the updated form of HTML 4.0.)''

;<span id="XHTML10">XHTML 1.0:</span>
:{{cite web :{{cite web
|editor1-last=Altheim |editor1-first=Murray
| author = ]
|editor2-last=McCarron |editor2-first=Shane
| title = XHTML 1.0: The Extensible HyperText Markup Language (Second Edition)
|editor3-last=Ishikawa |editor3-first=Masayasu
| publisher = ]
|title=XHTML 1.1 - Module-based XHTML - Second Edition
| date = 2000-01-26
|version=Revised version
| url = http://www.w3.org/TR/2002/REC-xhtml1-20020801
|publisher=]
| accessdate = 2009-03-24}}
|date=2010-11-23

|orig-date=2001
;<span id="XHTML11">XHTML 1.1:</span>
|url= https://www.w3.org/TR/xhtml11/
|access-date=2018-07-26}} ''(Superseded on 2018-03-27 by HTML 5.2.)''
:<span id="XHTML11m"></span>{{cite web
|editor1-last=Austin |editor1-first=Daniel
|editor2-last=Peruvemba |editor2-first=Subramanian
|editor3-last=McCarron |editor3-first=Shane
|editor4-last=Ishikawa |editor4-first=Masayasu
|editor5-last=Birbeck |editor5-first=Mark
|editor6-last=Altheim |editor6-first=Murray
|editor7-last=Boumphrey |editor7-first=Frank
|editor8-last=Dooley |editor8-first=Sam
|editor9-last=Schnitzenbaumer |editor9-first=Sebastian
|editor10-last=Wugofski |editor10-first=Ted
|title=XHTML Modularization 1.1 - Second Edition
|version=Revised version
|publisher=]
|date=2010-07-29
|orig-date=2006
|url= https://www.w3.org/TR/xhtml-modularization/
|access-date=2018-07-26}} ''(A more detailed version of the above. Also superseded on 2018-03-27 by ].)''
;<span id="HTML52">W3C HTML 5.2{{colon}}</span>
:{{cite web
|editor1-last=Faulkner |editor1-first=Steve
|editor2-last=Eicholz |editor2-first=Arron
|editor3-last=Leithead |editor3-first=Travis
|editor4-last=Danilo |editor4-first=Alex
|editor5-last=Moon |editor5-first=Sangwhan
|editor6-last=Doyle Navara |editor6-first=Erika
|editor7-last=O'Connor |editor7-first=Theresa
|editor8-last=Berjon |editor8-first=Robin
|title=HTML 5.2 W3C Recommendation
|version=Revised version
|publisher=]
|date=2017-12-14
|orig-date=2016
|url= https://www.w3.org/TR/html52/
|access-date=2018-07-26}} ''Supersedes all previous versions of HTML and XHTML, including .''
;<span id="WHATWGLS">WHATWG HTML5 Living Standard{{colon}}</span><!--Yes, WHATWG uses the run-together "HTML5" spelling.-->
:{{cite web :{{cite web
|editor-first=Ian |editor-last=Hickson |editor-link=Ian Hickson
| author = Altheim, M., and McCarron, S. (editors)
| title = XHTML 1.1 - Module-based XHTML |title=HTML Living Standard
|version=One-page Version
| publisher = ]
|publisher=]
| date = 2001-05-31
|date=2018-07-25
| url = http://www.w3.org/TR/2001/REC-xhtml11-20010531/
|url= https://html.spec.whatwg.org/
| accessdate = 2009-03-25}}
|access-date=2018-07-26}} ''Also available as a , and (also multi-page, with a search function and other gadgets, and minus details only of interest to browser vendors).''


===Other sources=== ===Other sources===


;''<span id="HTMLTAGS">HTML Tags:</span>'' ;''<span id="HTMLTAGS">HTML Tags{{colon}}</span>''
:{{cite web :{{cite web
| author = Berners-Lee, T. |last=Berners-Lee |first=Tim |author-link=Tim Berners-Lee
| title = HTML Tags |title=HTML Tags
| date = 1992-11-03 |date=1992-11-03
| url = http://www.w3.org/History/19921103-hypertext/hypertext/WWW/MarkUp/Tags.html |url= http://www.w3.org/History/19921103-hypertext/hypertext/WWW/MarkUp/Tags.html
| accessdate = 2009-03-28}} ''(Part of the first published description of HTML.)'' |access-date=2009-03-28}} ''(Part of the first published description of HTML.)''
;''<span id="HTMLDRAFT12">HTML Internet Draft 1.2{{colon}}</span>''

;''<span id="HTMLDRAFT12">HTML Internet Draft 1.2:</span>''
:{{cite web :{{cite web
| author = Berners-Lee, T., and Connolly, D. |last1=Berners-Lee |first1=Tim |author1-link=Tim Berners-Lee
|last2=Connolly |first2=Dan |author2-link=Dan Connolly (computer scientist)
| title = Hypertext Markup Language (HTML)
|title=Hypertext Markup Language (HTML)
| date = 1993-06
|date=June 1993
| url = http://www.w3.org/MarkUp/draft-ietf-iiir-html-01.txt
|url= http://www.w3.org/MarkUp/draft-ietf-iiir-html-01.txt
| format = text
| accessdate = 2009-03-28}} |access-date=2009-03-28}}
;''<span id="HTML30">HTML 3.0 Drafts{{colon}}</span>''

;''<span id="HTML30">HTML 3.0 Drafts:</span>''
:{{cite web :{{cite web
| last = Raggett |last=Raggett |first=Dave |author-link=Dave Raggett
|title=HyperText Markup Language Specification Version 3.0 (draft)
| first = Dave
|date=1995-03-24
| title = HyperText Markup Language Specification Version 3.0 (draft)
|url= http://www.w3.org/MarkUp/html3/CoverPage.html
| date = 1995-03-24
|access-date=2009-04-18}} ''(This is the final draft of HTML 3.0, which expired without being developed further.)''
| url = http://www.w3.org/MarkUp/html3/CoverPage.html
;''<span id="HTMLTABLES">HTML Tables{{colon}}</span>''
| accessdate = 2009-04-18}} ''(This is the final draft of HTML 3.0, which expired without being developed further.)''
:{{cite IETF

|last=Raggett |first=Dave
;''<span id="HTMLTABLES">HTML Tables:</span>''
|title=HTML Tables (RFC 1942)
|publisher=]
|date=May 1996
|rfc= 1942
|access-date = 2009-03-22}}
;<span id="XML10">XML 1.0{{colon}}</span>
:{{cite web :{{cite web
|editor1-last=Bray |editor1-first=Tim |editor1-link=Tim Bray
| first = Dave
|editor2-last=Paoli |editor2-first=Jean |editor2-link=Jean Paoli
| last = Raggett
|editor3-last=Sperberg-McQueen |editor3-first=C. Michael |editor3-link=Michael Sperberg-McQueen
| title = HTML Tables
|editor4-last=Maler |editor4-first=Eve
| work = RFC 1942
|editor5-last=Yergeau |editor5-first=François
| publisher = ]
|title=Extensible Markup Language (XML) 1.0 (Fifth Edition)
| date = 1996-05
|publisher=]
| url = http://tools.ietf.org/html/rfc1942
| accessdate = 2009-03-22}} |date=2008-11-26
|url= http://www.w3.org/TR/xml/

|access-date=2009-03-20}}
;<span id="XML10">XML 1.0:</span>
;<span id="CSS1">CSS 1{{colon}}</span>
:{{cite web :{{cite web
|last1=Lie |first1=Håkon Wium |author1-link=Håkon Wium Lie
| author = Bray, T, Paoli, J, Sperberg-McQueen, CM, Maler, E and Yergeau, F (editors)
|last2=Bos |first2=Bert |author2-link=Bert Bos
| title = Extensible Markup Language (XML) 1.0 (Fifth Edition)
|title=Cascading Style Sheets, Level 1
| publisher = ]
|version=Revised version
| date = 2008-11-26
|publisher=]
| url = http://www.w3.org/TR/2008/REC-xml-20081126/
| accessdate = 2009-03-20}} |date=2008-04-11
|orig-date=1996

|url= http://www.w3.org/TR/CSS1/
;<span id="CSS1">CSS:</span>
|access-date=2018-07-26}}
;<span id="CSS2.1">CSS 2.1{{colon}}</span>
:{{cite web
|last1=Bos |first1=Bert |author1-link=Bert Bos
|last2=Çelik |first2=Tantek |author2-link=Tantek Çelik
|last3=Hickson |first3=Ian |author3-link=Ian Hickson
|last4=Lie |first4=Håkon Wium |author4-link=Håkon Wium Lie
|title=Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification
|version=Revised version
|publisher=]
|date=12 April 2016
|orig-date=2011
|url= https://www.w3.org/TR/CSS2/
|access-date=2018-07-26}}
;CSS 3 and 4{{colon}}
:{{cite web
|last1=Atkins |first1=Tab Jr.
|last2=Eternad |first2=Elika J.
|last3=Rivoal |first3=Florian
|title=CSS Snapshot 2017
|at=§2. Cascading Style Sheets (CSS) – The Official Definition
|publisher=]
|date=31 January 2017
|url= https://www.w3.org/TR/CSS/#css
|access-date=2018-07-26}} ''(List of active specifications that have superseded CSS 2.1, as of the publication date.)''
:{{cite web :{{cite web
| author = Lie, H.W. and Bos, B. |author=<!--Staff writer(s); no by-line.-->
|title=CSS Current Status
| title = Cascading Style Sheets, level 1 (revised 2008-04-11)
| publisher = ] |publisher=]
| date = 2008-04-11 |date=2018
| url = http://www.w3.org/TR/CSS1/ |url= https://www.w3.org/standards/techs/css#w3c_all
|access-date=2018-07-26}} ''(CSS levels 3 and 4 are developed as independent modules, indexed at that page.)''
| accessdate = 2009-04-05}}
{{refend}} {{refend}}


==External links== ==External links==
{{wikibooks | HyperText Markup Language | Tag List | all elements in HTML }}
* Complete lists of and for HTML 4.01
* HTML 4.01 (Dec 24, 1999): and
* {{vanchor|HTML5}} (Oct 28, 2014):


] ]
]

Latest revision as of 14:55, 21 December 2024

Individual component of an HTML document For the usage of HTML on Misplaced Pages, see Help:HTML in wikitext. "nobr" redirects here. For the chemical compound, see NOBr. "Font color" redirects here. For other uses, see Font color (disambiguation).

HTML
Comparisons

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). 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 a 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

HTML element content categories

Elements vs. tags

As is generally understood, the position of an element is indicated as spanning from a start tag and is terminated by an end tag. 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.

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).

— HTML 5.1 2nd Edition § 8.1.2. Elements § Tags

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 <html> element, even if the string <html> doesn't appear anywhere in the markup.

— HTML 5.1 2nd Edition § 8.1.2.4. Optional tags


As HTML (before HTML5) is based on SGML, its parsing also depends on the Document Type Definition (DTD), specifically an HTML DTD (e.g. HTML 4.01). 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.

SGML vs. XML

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.

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.

%block; vs. box

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". This is used to define their nesting behavior: block-level elements cannot be placed into an inline context. 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, 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.

Overview

Syntax

< p   c l a s s A t t r i b u t e n a m e = p a r a g r a p h A t t r A t t r i b u t e   v a l u e > S t a r t   t a g T h i s   i s   a   p a r a g r a p h . C o n t e n t < / p > E n d t a g E l e m e n t {\displaystyle \overbrace {\overbrace {{\mathtt {\color {BrickRed}<\!p\ }}\color {Magenta}\underbrace {\mathtt {class}} _{\mathsf {\color {Black}{Attribute \atop name}}}{\mathtt {=''}}\!\underbrace {\mathtt {paragraph}} _{\mathsf {\color {White}{Attr} \atop \color {Black}Attribute\ value}}''{\mathtt {\color {BrickRed}>}}} ^{\mathsf {Start\ tag}}\overbrace {\mathtt {\color {Green}This\ is\ a\ paragraph.}} ^{\mathsf {Content}}\overbrace {\mathtt {\color {BrickRed}<\!/p\!>}} ^{\mathsf {End \atop tag}}} ^{\mathsf {Element}}} 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 <p> 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. Some elements, the so-called void elements, do not have an end tag. A typical example is the <br> (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>Sydney</p>

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 />Sydney</p>

HTML attributes are specified inside the start tag. For example, the <abbr> 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. 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

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 <title> element, which must not contain other elements (including markup of text), only plain text.

Void elements (also sometimes called empty elements, single elements or stand-alone elements) only have a start tag (in the form <tag>), which contains any HTML attributes. They may not contain any children, such as text or other elements. For compatibility with XHTML, the HTML specification allows an optional space and slash (<tag /> is permissible). The slash is required in XHTML and other XML applications. Two common void elements are <br /> (for a hard line-break, such as in a poem or an address) and <hr /> (for a thematic break). Other such elements are often place-holders which reference external files, such as the image (<img />) element. The attributes included in the element will then point to the external file in question. Another example of a void element is <link />, for which the syntax is:

<link rel="stylesheet" href="fancy.css" type="text/css">

This <link /> element points the browser at a style sheet 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 slash is required before the last angle bracket:

<link rel="stylesheet" href="fancy.css" type="text/css" />

Attributes

HTML attributes define desired behavior or indicate additional element properties. Most attributes require a value. In HTML, the value can be left unquoted if it does not include spaces (attribute=value), or it can be quoted with single or double quotes (attribute='value' or attribute="value"). In XML, those quotes are required.

Boolean attributes, on the other hand, do not require a value to be specified. An example is the checked for checkboxes:

<input type=checkbox checked>

In the XML (and thus XHTML) syntax, though, a value is required, and the name should be repeated as the value:

<input type="checkbox" checked="checked" />

Element standards

HTML elements are defined in a series of freely available open standards issued since 1995, initially by the IETF and subsequently by the W3C.

During the browser wars of the 1990s, developers of user agents (e.g. web browsers) 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.

In 1998, XML (a simplified form of SGML) introduced mechanisms to allow anyone to develop their own elements and incorporate them in XHTML documents, for use with XML-aware user agents.

Subsequently, HTML 4.01 was rewritten in an XML-compatible form, XHTML 1.0 (eXtensible HTML). 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 HTML for a discussion of the minor differences between the two.

Element status

Since the first version of HTML, several elements have become outmoded, and are deprecated in later standards, or do not appear at all, in which case they are invalid (and will be found invalid, and perhaps not displayed, by validating user agents).

In HTML 4.01 / XHTML 1.0, the status of elements is complicated by the existence of three types of DTD:

  • Transitional, which contain deprecated elements, but which were intended to provide a transitional period during which authors could update their practices;
  • Frameset, which are versions of the Transitional DTDs which also allow authors to write frameset documents;
  • Strict, which is the up-to-date (as at 1999) form of HTML.

HTML5 instead provides a listing of obsolete features to go along with the standardized normative content. They are broken down into "obsolete but conforming" for which implementation instructions exist and "non-conforming" ones that should be replaced.

The first Standard (HTML 2.0) contained four deprecated elements, one of which was invalid in HTML 3.2. All four are invalid in HTML 4.01 Transitional, which also deprecated a further ten elements. All of these, plus two others, are invalid in HTML 4.01 Strict. 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.

(Strictly speaking, the most recent XHTML standard, XHTML 1.1 (2001), does not include frames at all; it is approximately equivalent to XHTML 1.0 Strict, but also includes the Ruby markup module.)

A common source of confusion is the loose use of deprecated to refer to both deprecated and invalid status, and to elements that are expected to be formally deprecated in the future.

Content vs. presentation and behavior

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). This is often referred to as a separation of concerns. HTML is used to represent the structure or content of a document, its presentation remains the sole responsibility of CSS style sheets. A default style sheet is suggested as part of the CSS standard, giving a default rendering for HTML.

Behavior (interactivity) is also kept separate from content, and is handled by scripts. Images are contained in separate graphics files, separate from text, though they can also be considered part of the content of a page.

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.

Historically, user agents did not always support these features. In the 1990s, as a stop-gap, presentational elements (like <b> and <i>) 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.

External image files are incorporated with the <img /> or <object /> elements. (With XHTML, the SVG language can also be used to write graphics within the document, though linking to external SVG files is generally simpler.) Where an image is not purely decorative, HTML allows replacement content with similar semantic value to be provided for non-visual user agents.

An HTML document can also be extended through the use of scripts to provide additional behaviors beyond the abilities of HTML hyperlinks and forms.

The elements <style> and <script>, with related HTML attributes, provide style sheets and scripts.

  • In the document head, <style /> and <script /> may link to shared external documents, or <style>...</style> and <script>...</script> may contain embedded instructions. (The <link> element can also be used to link style sheets.)
  • <script /> or <script>...</script> can occur at any point in the document (head or body).
  • The style attribute is valid in most document body elements (e.g. <div style="...">) for inclusion of inline style instructions.
  • Event-handling attributes, which provide links to scripts, are optional in most elements.
  • For user agents which do not operate scripts, the <noscript>...</noscript> 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.

Document structure elements

<html>...</html>
The root element of an HTML document; all other elements are contained in this. The HTML element delimits the beginning and the end of an HTML document.
Both the start and end tags may be omitted (HTML5).
Standardized in HTML 2.0; still current.
<head>...</head>

(See document head elements for child elements.)

Container for processing information and metadata for an HTML document.
Both the start and end tags may be omitted and inferred from child elements (HTML5).
Standardized in HTML 5.0; still current.
<body></body>

(See document body elements for child elements.)

Container for the displayable content of an HTML document.
Both the start and end tags may be omitted and inferred from child elements (HTML5).
Standardized in HTML 2.0; still current.

Document head elements

<base />
Specifies a base URL for all relative href and other links in the document. Must appear before any element that refers to an external resource. HTML permits only one <base> element for each document. This element has HTML attributes, but no contents.
A development version of this element (as BASE) is mentioned in HTML Tags; standardized in HTML 2.0; still current.
<basefont /> (deprecated)
Specifies a base font size, typeface, and color for the document. Used together with <font> elements. Deprecated in favor of style sheets.
Standardized in HTML 3.2; deprecated in HTML 4.0 Transitional; invalid in HTML 4.0 Strict.
<isindex /> (deprecated)
<isindex> could either appear in the document head or in the body, but only once in a document. See Forms.
<link />
Specifies links to other documents, such as previous and next links, or alternate versions. A common use is to link to external style sheets, using the form, <link rel="stylesheet" type="text/css" href="url" title="description_of_style">. A less-common, but important, usage is to supply navigation hints consistently through use of microformats. Several common relationships are defined, that may be exposed to users through the browser interface rather than directly in the web page, such as: <link rel="next" href="url">. A document's <head> element may contain any number of <link /> elements. This element has HTML attributes, but no contents.
LINK existed in HTML Internet Draft 1.2, and was standardized in HTML 2.0; still current.
<meta />
Main article: Meta element

Can be used to specify additional metadata 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 HTML attributes. Because of their generic nature, <meta /> elements specify associative key-value pairs. 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 <meta /> element is defined by its attributes. Outside of XHTML, it is often given without the slash (<meta>), despite being a void element.

In one form, <meta /> elements can specify HTTP headers which should be sent by a web server before the actual content. For example, <meta http-equiv="foo" content="bar" /> specifies that the page should be served with an HTTP header called foo that has a value bar.

In the general form, a <meta /> element specifies name and associated content HTML attributes describing aspects of the HTML page. To prevent possible ambiguity, an optional third attribute, scheme, may be supplied to specify a semantic framework that defines the meaning of the key and its value. For example, in <meta name="foo" content="bar" scheme="DC" /> the <meta /> element identifies itself as containing the foo element, with a value of bar, from the DC or Dublin Core resource description framework.
Standardized in HTML 2.0; still current.
<object>...</object>
Used for including generic objects within the document header. Though rarely used within a <head> element, it could potentially be used to extract foreign data and associate it with the current document.
Standardized in HTML 4.0; still current.
<script>...</script>
Can act as a container for script instructions or link to an external script with the optional src attribute. Also usable in the document body to dynamically generate either both block or inline content.
Standardized in HTML 3.2; still current.
<style>...</style>
Specifies a CSS style for the document, usually in the form, <style type="text/css"> ... </style>. Can either act as a container for style instructions or link to external style sheets – for example, in CSS, with @import directives of the form, <style> @import url; </style>
Standardized in HTML 3.2; still current.
<title>...</title>
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 <title> 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).
  • Web search engines' web crawlers may pay particular attention to the words used in the title.
The <title> element must not contain other elements, only text. Only one <title> element is permitted in a document.
Existed in HTML Tags, and was standardized in HTML 2.0; still current.

Document body elements

In visual browsers, displayable elements can be rendered as either block or inline. While all elements are part of the document sequence, block elements appear within their parent elements:

  • as rectangular objects which do not break across lines;
  • with block margins, width, and height properties which can be set independently of the surrounding elements.

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.

Block elements

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.

The rectangular structure of a block element is often referred to as the box model, and is made up of several parts. Each element contains the following:

  • The content of an element is the actual text (or other media) placed between the opening and closing tags of an element.
  • The padding 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.
  • The border 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.
  • The margin 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 CSS placement. Using most standard DTDs, 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.

The above section refers only to the detailed implementation of CSS rendering and has no relevance to HTML elements themselves.

Basic text

<p>...</p>
Creates a paragraph, perhaps the most common block level element.
P existed in HTML Tags, and was standardized in HTML 2.0; still current.
<h1>...</h1>
<h2>...</h2>
<h3>...</h3>
<h4>...</h4>
<h5>...</h5>
<h6>...</h6>
Section headings at different levels. h1 delimits the highest-level heading, h2 the next level down (sub-section), h3 for a level below that, and so on to h6. They are sometimes referred to collectively as hn tags, n meaning any of the available heading levels. Most visual browsers show headings as large bold text by default, though this can be overridden with CSS. Heading elements are not intended merely for creating large or bold text – in fact, they should not 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.
Headings existed in HTML Tags, and were standardized in HTML 2.0; still current.

Lists

<dl>...</dl>
"Definition list" redirects here. For Misplaced Pages's article on lists of definitions, see Glossary. A description list (a.k.a. association list or definition list) consists of name–value groups, and was known as a definition list prior to HTML5. 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".
DL existed in HTML Tags, and was standardized in HTML 2.0; still current.
<dt>...</dt>
A name in a description list (previously definition term in a definition list).
DT existed in HTML Tags, and was standardized in HTML 2.0; still current.
<dd>...</dd>
A value in a description list (previously definition data in a definition list).
DD existed in HTML Tags, and was standardized in HTML 2.0; still current.
<ol>...</ol>
An ordered (enumerated) list. The type 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: <ol type="foo">; or in a CSS declaration: ol { list-style-type: foo; } – replacing foo with one of the following:
  • A, B, C ... – HTML value: A; CSS value: upper-alpha
  • a, b, c ... – HTML value: a; CSS value: lower-alpha
  • I, II, III ... – HTML value: I; CSS value: upper-roman
  • i, ii, iii ... – HTML value: i; CSS value: lower-roman
  • 1, 2, 3 ... – HTML value: 1; decimal
CSS provides several other options not available as pure-HTML markup, including none, and options for CJK, Hebrew, Georgian, and Armenian script. The attribute is deprecated in HTML 3.2 and 4.01, but not in HTML 5.
OL existed in HTML Internet Draft 1.2, and was standardized in HTML 2.0; still current.
<ul>...</ul>
An unordered (bulleted) list. The type of list item marker can be specified in an HTML attribute: <ul type="foo">; or in a CSS declaration: ul { list-style-type: foo; } – replacing foo with one of the following (the same values are used in HTML and CSS): disc (the default), square, or circle. Only the CSS method is supported in HTML5; the attribute is deprecated in HTML 3.2 and 4.01. CSS also provides none, and the ability to replace these bullets with custom images.
UL existed in HTML Tags, and was standardized in HTML 2.0; still current.
<li>...</li>
A list item in ordered (ol) or unordered (ul) lists.
LI existed in HTML Tags, and was standardized in HTML 2.0; still current.
<dir>...</dir> (deprecated)
A directory listing. The original purpose of this element was never widely supported; deprecated in favor of <ul>.
DIR existed in HTML Tags, and was standardized in HTML 2.0; deprecated in HTML 4.0 Transitional; invalid in HTML 4.0 Strict.

Other block elements

<address>...</address>
Contact information for the document author.
ADDRESS existed in HTML Tags, and was standardized in HTML 2.0; still current.
<article>...</article>
Main article: Article element Used for articles and other similar content.
Standardized in HTML5.
<aside>...</aside>
Used for content in a document which is separate from the main page content, for example, sidebars or advertising.
Standardized in HTML5.
<blockquote>...</blockquote>
Main article: Blockquote element

A block level quotation, for when the quotation includes block level elements, e.g. paragraphs. The cite attribute (not to be confused with the <cite> element) may give the source, and must be a fully qualified Uniform Resource Identifier.

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 (<q>) element.
BLOCKQUOTE existed in HTML Internet Draft 1.2, and was standardized in HTML 2.0; still current. See blockquote element for more information.
<center>...</center> (deprecated)
Creates a block-level center-aligned division. Deprecated in favor of <div> or another element with centering defined using style sheets.
Standardized in HTML 3.2; deprecated in HTML 4.0; not supported in HTML5.
<del>...</del>
Marks a deleted section of content. This element can also be used as inline.
Standardized in HTML 4.0; still current.
<div>...</div>
Main article: Span and 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 style sheets or DOM calls.
Proposed in the HTML 3.0 Drafts; Standardized in HTML 3.2; still current.
<figure>...</figure>
Used to group images and captions, along with <figcaption>.
Standardized in HTML5.
<figcaption>...</figcaption>
A caption for an image. Always placed inside the <figure> element.
Standardized in HTML5.
<footer>...</footer>
Used for document footers. These might contain author or copyright information, or links to other pages.
Standardized in HTML5.
<header>...</header>
Used for document headers. These typically contain content introducing the page.
Standardized in HTML5.
<hr />
A thematic break (originally: horizontal rule). Presentational rules can be drawn with style sheets.
Standardized in HTML 2.0; still current.
<ins>...</ins>
Marks a section of inserted content. This element can also be used as inline.
Standardized in HTML 4.0; still current.
<main>...</main>
Contains the main content of a document.
Standardized in HTML 5.1.
<menu>...</menu>
HTML 2.0: A menu listing. Should be more compact than a <ul> list.
MENU existed in HTML Tags, and was standardized in HTML 2.0; deprecated in HTML 4.0 Transitional; invalid in HTML 4.0 Strict; then redefined in HTML5, removed in HTML 5.2, but is included in the HTML Living Standard in 2019.
<nav>...</nav>
Used in navigational sections of articles (areas of webpages which contain links to other webpages).
Standardized in HTML5.
<noscript>...</noscript>
Replacement content for scripts. Unlike script this can only be used as a block-level element.
Standardized in HTML 4.0; still current.
<pre>...</pre>
Pre-formatted text. Text within this element is typically displayed in a non-proportional font exactly as it is laid out in the file (see ASCII art). Whereas browsers ignore white-space for other HTML elements, in <pre>...</pre>, white-space should be rendered as authored. (With the CSS properties: { white-space: pre; font-family: monospace; }, other elements can be presented in the same way.) This element can contain any inline element except: <image>, <object>, <big>, <small>, <sup>, and <sub>...</sub>.
PRE existed in HTML Internet Draft 1.2, and was standardized in HTML 2.0; still current.
<section>...</section>
Used for generic sections of a document. This is different from <div> 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.
Standardized in HTML5.
<script>...</script>
Places a script in the document. Also usable in the head and in inline contexts. It may be used as <script /> with a src attribute to supply a URL from which to load the script, or used as <script>...</script> around embedded script content. Note: <script> 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.
Standardized in HTML 3.2; still current.

Inline elements

Inline elements cannot be placed directly inside the <body> element; they must be wholly nested within block-level elements.

Anchor

For anchors on Misplaced Pages, see WP:ANCHOR DEF.
<a>...</a>

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.

In HTML, an "anchor" can be either the origin (the anchor text) or the target (destination) end of a hyperlink. As an origin, setting the attribute href, creates a hyperlink; it can point to either another part of the document or another resource (e.g. a webpage) using an external URL. As a target, setting the name or id HTML attributes, allows the element to be linked from a Uniform Resource Locator (URL) via a fragment identifier. The two forms, origin and anchor, can be used concurently.

In HTML5, any element can now be made into a target by using the id attribute, so using <a name="foo">...</a> is not necessary, although this way of adding anchors continues to work.

To illustrate: the header of a table of contents section on example.com's homepage could be turned into a target by writing: <h2><a name="contents">Table of contents</a></h2>.

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: <a href="http://example.com#contents">see contents</a>;

or with a link on the same page like: <a href="#contents">contents, above</a>.

The attribute title may be set to give brief information about the link: <a href="URL" title="additional information">link text</a>.

In most graphical browsers, when the cursor hovers over a link, the cursor changes into a hand with an extended index finger and the title value is displayed in a tooltip or in some other manner. Some browsers render alt text the same way, although this is not what the specification calls for.

A existed in HTML Tags, and was standardized in HTML 2.0;

Phrase elements

Phrase elements are used for marking up phrases and adding structure or semantic meaning to text fragments. For example, the <em> and <strong> tags can be used for adding emphasis to text.

General
<abbr>...</abbr>
Marks an abbreviation, and can make the full form available: <abbr title="abbreviation">abbr.</abbr>
Standardized in HTML 4.0; still current.
<acronym>...</acronym> (deprecated)
Similar to the <abbr> element, but marks an acronym: <acronym title="Hyper-Text Mark-up Language">HTML</acronym>
Standardized in HTML 4.0; still current, not supported in HTML5. Recommended replacement is the abbr tag.
<dfn>...</dfn>
Inline definition of a single term.
DFN existed in HTML Internet Draft 1.2, and was fully standardized in HTML 3.2; still current.
<em>...</em>
Emphasis (conventionally displayed in italics)
EM existed in HTML Internet Draft 1.2, and was standardized in HTML 2.0; still current.
<strong>...</strong>
importance; originally strong emphasis (conventionally displayed bold). An aural user agent may use different voices for emphasis.
STRONG existed in HTML Internet Draft 1.2, and was standardized in HTML 2.0; still current, redefined in HTML5.
Computer phrase elements

These elements are useful primarily for documenting computer code development and user interaction through differentiation of source code (<code>), variables (<var>), user input (<kbd>), and terminal or other output (<samp>).

<code>...</code>
A code snippet (code example). Conventionally rendered in a mono-space font.
CODE existed in HTML Internet Draft 1.2, and was standardized in HTML 2.0; still current.
<kbd>...</kbd>
Keyboard – text to be entered by the user (kbd example).
KBD existed in HTML Internet Draft 1.2, and was standardized in HTML 2.0; still current.
<samp>...</samp>
Sample output – from a program or script: (samp example).
SAMP existed in HTML Internet Draft 1.2, and was standardized in HTML 2.0; still current.
<var>...</var>
Variable (var example).
VAR existed in HTML Internet Draft 1.2, and was standardized in HTML 2.0; still current.

Presentation

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 XHTML 2.0. The current draft of HTML5, however, re-includes <s>, <u>, and <small>, assigning new semantic meaning to each. In an HTML5 document, the use of these elements is no longer discouraged, provided that it is semantically correct.

<b>...</b>
In HTML 4, set font to boldface where possible. Equivalent CSS: { font-weight: bold; }. The <strong> element usually has the same effect in visual browsers, as well as having more semantic meaning, under HTML 4.01. In HTML5, however, <b> has its own meaning, distinct from that of <strong>. 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."
B existed in HTML Internet Draft 1.2, and was standardized in HTML 2.0; still current, redefined in HTML5.
<i>...</i>
In HTML 4, set font to italic where possible. Equivalent CSS: { font-style: italic; }. Using <em>...</em> has the same visual effect in most browsers, as well as having a semantic meaning as emphasis, under HTML 4.01. (Purely typographic italics have many non-emphasis purposes, as HTML 5 more explicitly recognized.) In HTML5, however, <i> has its own semantic meaning, distinct from that of <em>. It denotes "a different quality of text" or "an alternate voice or mood" e.g., a thought, a ship name, a binary species name, a foreign-language phrase, etc.
I existed in HTML Internet Draft 1.2, and was standardized in HTML 2.0; still current, redefined in HTML5.
<u>...</u>
In HTML 4, underlined text. Equivalent CSS: { text-decoration: underline; }. Deprecated in HTML 4.01. Restored in HTML5. In HTML5, the <u> 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 HTML5 specification reminds developers that other elements are almost always more appropriate than <u> and admonishes designers not to use underlined text where it could be confused for a hyper-link.
U existed in HTML Internet Draft 1.2, was standardized in HTML 3.2 but was deprecated in HTML 4.0 Transitional and was invalid in HTML 4.0 Strict. Reintroduced in HTML5.
<small>...</small>
In HTML 4, decreased font size (smaller text). Equivalent CSS: { font-size: smaller; } In HTML5, the <small> element denotes "side comments such as small print." This has caused some confusion with the <aside>...</aside> element.
Standardized in HTML 3.2; still current.
<s>...</s>
In HTML 4, indicated strike-through text (Strikethrough) and was equivalent to <strike>. In HTML5, the <s> element denotes information that is "no longer accurate or no longer relevant", and is not to be confused with <del>, which indicates removal/deletion.
S was deprecated in HTML 4.0 Transitional (having not appeared in any previous standard), and was invalid in HTML 4.0 Strict. Reintroduced in HTML5, which instead deprecated <strike>.
<big>...</big> (deprecated)
Increased font size (bigger text). Equivalent CSS: { font-size: larger; }
Standardized in HTML 3.2; not supported in HTML5.
<strike>...</strike> (deprecated)
Strike-through text (Strikethrough), (Equivalent CSS: { text-decoration: line-through; })
STRIKE was standardized in HTML 3.2; deprecated in HTML 4.0 Transitional; invalid in HTML 4.0 Strict.
<tt>...</tt> (deprecated)
Fixed-width font (typewriter-like), also known as teletype, thus "tt". (Equivalent CSS: { font-family: monospace; })
TT existed in HTML Internet Draft 1.2, and was Standardized in HTML 2.0; not supported in HTML5. Possible replacements: <kbd> for marking user input, <var> for variables (usually rendered italic, and not with a change to monospace), <code> for source code, <samp> for output.
<font>...</font> (deprecated)
<font >...</font> Can specify the font color with the color attribute (note the American spelling), typeface with the face attribute, and absolute or relative size with the size attribute. Examples (all uses are deprecated, use CSS equivalents if possible):
  • <font color="green">text</font> creates green text.
  • <font color="#114499">text</font> creates text with hexadecimal color #114499.
  • <font size="4">text</font> creates text with size 4. Sizes are from 1 to 7. The standard size is 3, unless otherwise specified in the <body> or other tags.
  • <font size="+1">text</font> creates text with size 1 bigger than the standard. <font size="-1">text</font> is opposite.
  • <font face="Courier">text</font> makes text with Courier font.
Equivalent CSS for font attributes:
  • <font size="N"> corresponds to {font-size: Yunits} (the HTML specification does not define the relationship between size N and unit-size Y, nor does it define a unit).
  • <font color="red"> corresponds to { color: red; }
  • <font face="Times New Roman"> corresponds to { font-family: 'Times New Roman', Times, serif; } – CSS supports a font stack, of two or more alternative fonts.
Standardized in HTML 3.2; deprecated in HTML 4.0 Transitional; invalid in HTML 4.0 Strict. Not part of HTML5.

Span

<span>...</span>
Main article: Span and 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 style sheets or DOM calls.
Standardized in HTML 4.0; still current.

Other inline elements

<br />
A forced line break.
Standardized in HTML 2.0; still current.
<bdi>...</bdi>
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.
Standardized in HTML5.
<bdo>...</bdo>
Marks an inline section of text in which the reading direction is the opposite from that of the parent element.
Standardized in HTML 4.0; still current.
<cite>...</cite>
A citation or a reference for a quote or statement in the document.
CITE existed in HTML Internet Draft 1.2, and was standardized in HTML 2.0; still current.
Note: The HTML 5 specifications have been confusingly forked, including with regard to this element. In HTML 4 and earlier, <cite> was for "a citation or a reference to other sources" without any particular limitations or requirements. The W3C 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." But the WHATWG spec only permits the element to be used around the title of a work. 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 <cite>...</cite>, 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.
<data>...</data>
Links inline content with a machine-readable translation.
Standardized in HTML5.
<del>...</del>
Deleted text. Typically rendered as a strikethrough: Deleted text.
Standardized in HTML 4.0; still current.
<ins>...</ins>
Inserted text. Often used to mark up replacement text for material struck with <del> or <s>. Typically rendered underlined: Inserted text.
Standardized in HTML 4.0; still current.
Both <ins> and <del> 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 <del> elements. Two <del> 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.
<mark>...</mark>
Produces text that looks like this. Intended for highlighting relevant text in a quotation.
Standardized in HTML5.
<q>...</q>
An inline quotation (for block level quotation see <blockquote>). Quote elements may be nested. <q> should automatically generate quotation marks in conjunction with style sheets. Practical concerns due to browser non-compliance may force authors to find workarounds. The cite attribute gives the source, and must be a fully qualified URI.
Standardized in HTML 4.0; still current.
Note: Lengthy inline quotations may be displayed as indented blocks (as block-quote) using style sheets. For example, with a suitable CSS rule associated with q.lengthy: <q class="lengthy">Lengthy quote here.</q>
<rb>...</rb>
Represents the base component of a ruby annotation.
Standardized in HTML5.
<rp>...</rp>
Provides fallback parenthesis for browsers lacking ruby annotation support.
Standardized in HTML5.
<rt>...</rt>
Indicates pronunciation for a character in a ruby annotation.
Standardized in HTML5.
<rtc>...</rtc>
Semantic annotations for a ruby annotation.
Standardized in HTML5.
<ruby>...</ruby>
Represents a ruby annotation for showing the pronunciation of East Asian characters.
Standardized in HTML5.
<script>...</script>
Places a script in the document. Also usable in the head and in block contexts. Note: <script> 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.
Standardized in HTML 3.2; still current.
<sub>...</sub>
<sup>...</sup>
Mark subscripted or text. (Equivalent CSS: { vertical-align: sub; } and { vertical-align: super; }, respectively.)
Both were proposed in the HTML 3.0 Drafts; Standardized in HTML 3.2; still current.
<template>...</template>
Code fragments to be copied by scripts.
Standardized in HTML5.
<time>...</time>
Represents a time on the 24-hour clock or a date on the Gregorian calendar, optionally with time and time zone information. Also allows times and dates to be represented in a machine-readable format.
Standardized in HTML5.
<wbr />
An optional word break.
Was widely used (and supported by all major browsers) for years despite being non-standard until finally being standardized in HTML5.

Images and objects

This section needs to be updated. The reason given is: How do current browsers handle <applet>? What does HTML 5 say about it?. Please help update this article to reflect recent events or newly available information. (July 2023)
<applet>...</applet> (deprecated)
Embeds a Java applet in the page. Deprecated in favor of <object>, as it could only be used with Java applets, and had accessibility limitations.
Standardized in HTML 3.2; deprecated in HTML 4.0 Transitional; invalid in HTML 4.0 Strict. As of 2011, still widely used as the implementations of the replacing <object> are not consistent between different browsers.
<area />
Specifies a focusable area in a <map>.
Standardized in HTML 3.2; still current.
<audio>...</audio>
Adds playable HTML audio to the page. The audio URL is determined using the src attribute. Supported audio formats vary from browser to browser.
Standardized in HTML5.
<canvas>...</canvas>
Main article: Canvas element Adds a canvas whose contents can be edited with JavaScript. Frequently used for online games.
Standardized in HTML5.
<embed>...</embed>
Inserts a non-standard object (like applet) or external content (typically non-HTML) into the document.
Deprecated in HTML 4 in favor of <object>, but then was added back into the HTML5 specification
<img />
Used by visual user agents to insert an image in the document. The src attribute specifies the image URL. The required alt attribute provides alternative text in case the image cannot be displayed. (Though alt is intended as alternative text, Microsoft Internet Explorer 7 and below render it as a tooltip if no title attribute is given. Safari and Google Chrome, on the other hand, do not display the alt attribute at all.) The <img /> element was first proposed by Marc Andreessen and implemented in the NCSA Mosaic web browser.
IMG existed in HTML Internet Draft 1.2, and was standardized in HTML 2.0; still current.
<map>...</map>
Specifies a client-side image map.
Standardized in HTML 3.2; still current.
<object>...</object>
Includes an object in the page of the type specified by the type attribute. This may be in any MIME-type the user agent understands, such as an embedded HTML page, a file to be handled by a plug-in such as Flash, a Java applet, a sound file, etc.
Standardized in HTML 4.0; still current.
<param />
Originally introduced with <applet>, this element is now used with <object>, and should only occur as a child of <object>. It uses HTML attributes 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 <param /> elements.
Standardized in HTML 3.2; still current.
<source>...</source>
Specifies different sources for audio or video. Makes use of the src attribute in a way similar to the <video> and <audio> elements.
Standardized in HTML5.
<track>...</track>
Provides text tracks, like subtitles and captions, for audio and video.
Standardized in HTML5.
<video>...</video>
Adds a playable HTML video to the page. The video URL is determined using the src attribute. Supported video formats vary from browser to browser.
Standardized in HTML5.

Forms

Main article: Form (HTML)

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 (server-side, client-side, or both) must be used to process the user's input once it is submitted.

(These elements are either block or inline elements, but are collected here as their use is more restricted than other inline or block elements.)

<form action="url">...</form>
Creates a form. The <form> element specifies and operates the overall action of a form area, using the required action attribute.
Standardized in HTML 2.0; still current.
<button>...</button>
A generic form button which can contain a range of other elements to create complex buttons.
Standardized in HTML 4.0; still current.
<datalist>...</datalist>
A list of options for use in form elements.
Standardized in HTML5.
<fieldset>...</fieldset>
A container for adding structure to forms. For example, a series of related controls can be grouped within a <fieldset>, which can then have a <legend> added in order to identify their function.
Standardized in HTML 4.0; still current.
<input />
<input> elements allow a variety of standard form controls to be implemented.
Standardized in HTML 2.0; still current.
Input Types:
 type="checkbox"
A checkbox. Can be checked or unchecked.
 type="radio"
A radio button. If multiple radio buttons are given the same name, the user will only be able to select one of them from this group.
 type="button"
A general-purpose button. The element <button> is preferred if possible (i.e., if the client supports it) as it provides richer possibilities.
 type="submit"
A submit button.
 type="image"
An image button. The image URL may be specified with the src attribute.
 type="reset"
A reset button for resetting the form to default values.
 type="text"
A one-line text input field. The size attribute specifies the default width of the input in character-widths. max-length sets the maximum number of characters the user can enter (which may be greater than size).
 type="search"
A variation of text which produces a search bar.
 type="password"
A variation of text. The difference is that text typed in this field is masked – characters are displayed as an asterisk, a dot, or another replacement. The password is still submitted to the server as plaintext, so an underlying secure communication protocol like HTTPS is needed if confidentiality is a concern.
 type="file"
A file select field (for uploading files to a server).
 type="tel"
A variation of text for telephone numbers.
 type="email"
A variation of text for email addresses.
 type="url"
A variation of text for URLs.
 type="date"
A date selector.
 type="time"
A time selector.
 type="number"
A variation of text for numbers.
 type="range"
Produces a slider for that returns a number, but the number is not visible to the user.
 type="color"
A color picker.
 type="hidden"
hidden 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.
<isindex /> (deprecated)
<isindex /> could either appear in the document head or in the body, but only once in a document. <isindex /> operated as a primitive HTML search form; but was de facto obsoleted by more advanced HTML forms introduced in the early to mid-1990s. Represents a set of hyperlinks composed of a base URI, an ampersand and percent-encoded keywords separated by plus signs.
ISINDEX existed in HTML Tags; standardized in HTML 2.0; deprecated in HTML 4.0 Transitional; invalid in HTML 4.0 Strict.
<keygen>...</keygen> (deprecated)
A key pair generator.
Standardized in HTML5, but removed in HTML 5.2.
<label for="id">...</label>
Creates a label for a form input, such as radio. Clicking on the label fires a click on the matching input.
Standardized in HTML 4.0; still current.
<legend>...</legend>
A legend (caption) for a <fieldset>.
Standardized in HTML 4.0; still current.
<meter>...</meter>
A meter which needs a value attribute. Can also have: min, low, high, and max.
Standardized in HTML5.
<option value="x">...</option>
Creates an item in a <select> list.
Standardized in HTML 2.0; still current.
<optgroup>...</optgroup>
Identifies a group of <option> elements in a <select> list.
Standardized in HTML 4.0; still current.
<output>...</output>
The value of a form element.
Standardized in HTML5.
<progress>...</progress>
A bar for showing the progress of an action.
Standardized in HTML5.
<select name="xyz">...</select>
Creates a selection list, from which the user can select a single option. May be rendered as a dropdown list.
Standardized in HTML 2.0; still current.
<textarea rows="8">...</textarea>
A multiple-line text area, the size of which is specified by cols (where a column is a one-character width of text) and rows HTML attributes. The content of this element is restricted to plain text, which appears in the text area as default text when the page is loaded.
Standardized in HTML 2.0; still current.

Tables

The format of HTML Tables was proposed in the HTML 3.0 Drafts and the later RFC 1942 HTML Tables. They were inspired by the CALS Table Model. 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 block nor inline elements.)

<table>...</table>
Identifies a table. Several HTML attributes are possible in HTML Transitional, but most of these are invalid in HTML Strict and can be replaced with style sheets. The summary attribute is informally required for accessibility purposes, though its usage is not simple.
Proposed in the HTML 3.0 Drafts; Standardized in HTML 3.2; still current.
<tr>...</tr>
Contains a row of cells in a <table>.
Proposed in the HTML 3.0 Drafts; Standardized in HTML 3.2; still current.
<th>...</th>
A <table> header cell; contents are conventionally displayed bold and centered. An aural user agent may use a louder voice for these items.
Proposed in the HTML 3.0 Drafts; Standardized in HTML 3.2; still current.
<td>...</td>
A <table> data cell.
Proposed in the HTML 3.0 Drafts; Standardized in HTML 3.2; still current.
<colgroup>...</colgroup>
Specifies a column group in a <table>.
Proposed in HTML Tables; Standardized in HTML 4.0; still current.
<col>...</col>
Specifies a column in a <table>.
Proposed in HTML Tables; Standardized in HTML 4.0; still current.
<caption>...</caption>
Specifies a caption for a <table>.
Proposed in the HTML 3.0 Drafts; Standardized in HTML 3.2; still current.
<thead>...</thead>
Specifies the header part of a <table>. This section may be repeated by the user agent if the table is split across pages (in printing or other paged media).
Proposed in HTML Tables; Standardized in HTML 4.0; still current.
<tbody>...</tbody>
Specifies a body of data for a <table>.
Proposed in HTML Tables; Standardized in HTML 4.0; still current.
<tfoot>...</tfoot>
Specifies the footer part of a <table>. Like <thead>, this section may be repeated by the user agent if the table is split across pages (in printing or other paged media).
Proposed in HTML Tables; Standardized in HTML 4.0; still current.

Frames

Main article: Frame (World Wide Web)

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, 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 <iframe> 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 Facebook and Twitter use iframes to display content (plugins) on third party websites. Google AdSense uses iframes to display banners on third party websites.

In HTML 4.01, a document may contain a <head> and a <body> or a <head> and a <frameset>, but not both a <body> and a <frameset>. However, <iframe> can be used in a normal document body.

<frameset>...</frameset> (deprecated)
Contains the set of <frame /> elements for a document. The layout of frames is given by comma separated lists in the rows and cols HTML attributes.
Standardized in HTML 4.0 Frameset, obsolete in HTML5.
<frame /> (deprecated)
Defines a single frame, or region, within the <frameset>. A separate document is linked to a frame using the src attribute inside the <frame /> element.
Standardized in HTML 4.0 Frameset, obsolete in HTML5.
<noframes>...</noframes> (deprecated)
Contains normal HTML content for user agents that do not support <frame /> elements.
Standardized in HTML 4.0 Transitional, obsolete in HTML5.
<iframe>...</iframe>
An inline frame places another HTML document in a frame. Unlike an <object /> element, an <iframe> 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 src attribute inside the <iframe />, an inline HTML code is embedded to a frame using the srcdoc attribute inside the <iframe /> element.
First introduced by Microsoft Internet Explorer in 1997, standardized in HTML 4.0 Transitional, allowed in HTML5.

longdesc attribute

In HTML, longdesc is an attribute used within the <img />, <frame />, or <iframe> elements. It is supposed to be a URL to a document that provides a long description for the image, frame, or iframe in question. This attribute should contain a URL, not – as is commonly mistaken – the text of the description itself.

longdesc was designed to be used by screen readers to display image information for computer users with accessibility issues, such as the blind or visually impaired, and is widely implemented by both web browsers and screen readers. Some developers object that 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 longdesc. The publishing industry has responded, advocating the retention of longdesc.

Example

<img src="Hello.jpg" longdesc="description.html">


Content of description.html:

<br />
<p>This is an image of a two-layered birthday cake.</p>
...

Linking to the long description in the text

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 <img /> element whenever possible, as this can also aid sighted users.

Example
<img src="Hello.jpg" longdesc="description.html" /> [<a href=
"description.html" title="long description of the image">D</a>]

Historic elements

The following elements were part of the early HTML developed by Tim Berners-Lee from 1989 to 1991; they are mentioned in HTML Tags, but deprecated in HTML 2.0 and were never part of HTML standards.

<listing>...</listing> (deprecated)
This element displayed the text inside the tags in a monospace font and without interpreting the HTML. The HTML 2.0 specification recommended rendering the element at up to 132 characters per line.
Deprecated in HTML 3.2; obsolete in HTML5.
<plaintext> (deprecated)
<plaintext> 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 plaintext.
<plaintext> existed in HTML Tags; deprecated in HTML 2.0; invalid in HTML 4.0.
<xmp>...</xmp> (deprecated)
This element displayed the text inside the tags in a monospace font and without interpreting the HTML. The HTML 2.0 specification recommended rendering the element at 80 characters per line.
Deprecated in HTML 3.2; obsolete in HTML5.
<nextid> (deprecated)
This element enabled NeXT web designing tool to generate automatic NAME labels for its anchors and was itself automatically generated.
<nextid> existed in HTML Tags (described as obsolete); deprecated in HTML 2.0; invalid in HTML 3.2 and later.

Non-standard elements

This is the new WikiPedia!
Example of marquee text from the first Misplaced Pages edit (accomplished via CSS; the <marquee> tag itself is deprecated and no longer works in most browsers)

UuU

Example of blinking text (accomplished via CSS; the <blink> tag itself is deprecated and no longer works in most browsers) with link to page. Not to be confused with UwU, this page contains the earliest surviving edit on the English Misplaced Pages.

This section lists some widely used obsolete elements, which means they are not used in valid code. They may not be supported in all user agents.

<blink>...</blink> (deprecated)
Main article: Blink element Causes text to blink. Introduced in imitation of the ANSI escape codes. Can be done with CSS where supported: {text-decoration: blink} (This effect may have negative consequences for people with photosensitive epilepsy; its use on the public Internet should follow the appropriate guidelines.)
<blink> originated in Netscape Navigator and is mostly recognized by its descendants, including Firefox; deprecated or invalid in HTML 2.0 and later. The replacement CSS tag, while standard, is not required to be supported.
<layer>...</layer> (deprecated)
Main article: Layer element Creates an absolute positioned and framed layer. Can be done with frames and/or CSS instead. There are attributes, including ID, LEFT, TOP, PAGEX, PAGEY, SRC, Z-INDEX, ABOVE, WIDTH, HEIGHT, BELOW, CLIP, VISIBILITY and CLIP.
<layer> originated in Netscape 4; deprecated or invalid in HTML 4.01 and later.
<marquee>...</marquee> (deprecated)
Main article: Marquee element Creates scrolling text. Can be done with scripting instead. (This effect may have negative consequences for people with photosensitive epilepsy; its use on the public Internet should follow the appropriate guidelines.) There are three options, including Alternate, Scroll and slide. Scrolldelay can also be added.
<marquee> originated in Microsoft Internet Explorer; deprecated or invalid in HTML 4.01 and later.
<nobr>...</nobr> (deprecated)
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: {white-space: nowrap;}
<nobr> is a proprietary element which is recognized by most browsers for compatibility reasons; deprecated or invalid in HTML 2.0 and later.
<noembed>...</noembed> (deprecated)
Specifies alternative content, if the embed cannot be rendered. Replaced by the content of the <embed> or <object> element.

Comments

<!-- A Comment -->

A comment in HTML (and related XML, SGML and SHTML) uses the same syntax as the SGML comment or XML comment, depending on the doctype.

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 <!--(the beginning of a comment),-->(this ends the comment so it trivially follows it can not appear inside it) and --!>. Additionally, the strings > and -> cannot appear at the beginning of a comment and <!- cannot appear at the end.

As a result, the markup <!--Xbegin<!--Y-->Xend--> is ill-formed and will yield the comment Xbegin<!--Y and the text Xend--> after it, or sometimes just Xend-->, depending on browser.

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: <span id="x1"<!--for "extension one"--> style="...">).

Comments can even appear before the doctype declaration; no other tags are permitted to do this.

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).

There are a few compatibility quirks involving comments:

  • Placing comments – or indeed any characters except for white-space – before the doctype will cause Internet Explorer 6 to use quirks mode for the HTML page. None of the doctype information will be processed.
  • For compatibility with some pre-1995 browsers, the contents of <style> and <script> 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. <-- ... -->.
  • The BlueGriffon HTML editor, in versions 1.7.x, makes comments that are not embedded in the syntax structure; <style> ... {comment tags} ...</style> will show up on-screen. Other HTML editors may have this same defect.

See also

Notes

  1. 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.
  2. A macro-like feature of DTDs may still be used within XML.
  3. One minor difference is that XML, even after the DOM interface, is case-sensitive.
  4. However, see <object> for the inevitable exception.
  5. Strictly an IRI, not a URL; although URLs are a subset of IRIs.

References

  1. ^ "§3 On SGML and HTML". HTML 4.01 Specification. W3C. 24 December 1999. §3.2.1 Elements.
  2. "§3 On SGML and HTML". HTML 4.01 Specification. W3C. 24 December 1999. §3.1 Introduction to SGML.
  3. "HTML 4.01, §21, Document Type Definition". W3C. 24 December 1999.
  4. ^ "HTML Standard § Optional tags". WHATWG. Retrieved 22 March 2019.
  5. "§1. Document Object Model HTML". Document Object Model (DOM) Level 2 HTML Specification. W3C. 9 January 2003. §1.3. XHTML and the HTML DOM.
  6. ^ "§7 The global structure of an HTML document". HTML 4.01 Specification. W3C. 24 December 1999. §7.5.3 Block-level and inline elements.
  7. Mark Newhouse (27 September 2002). "CSS Design: Taming Lists". A List Apart.
  8. XHTML 1.0 §4.2
  9. XML 1.0 (The ability to produce additional elements is part of the eXtensibility in the acronym.)
  10. XML 1.0 §5.1
  11. WHATWGLS. § 15
  12. XHTML 1.1 §A
  13. "HTML & CSS". W3C. 2013.
  14. "Appendix D. Default style sheet for HTML 4". Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification. W3C. 7 June 2011.
  15. HTML 4.01 §14.1
  16. Ferraiolo, J.; Fujisawa, J.; Jackson, D., eds. (2003-01-14). "§2.3 Options for using SVG in Web pages". Scalable Vector Graphics (SVG) 1.1 Specification. W3C. Retrieved 2009-03-25.
  17. HTML 4.01 §12.3
  18. HTML 4.01 §14.3.2
  19. HTML 4.01 §18
  20. CSS §1.1
  21. "4.4 Grouping content – HTML5". HTML5: A vocabulary and associated APIs for HTML and XHTML – W3C Recommendation. World Wide Web Consortium. 28 October 2014. §4.4.8 The dl element. Retrieved 16 August 2015.
  22. "Lists in HTML documents". HTML 4.01 Specification – W3C Recommendation. World Wide Web Consortium. 24 December 1999. §10.3 Definition lists: the DL, DT, and DD elements. Retrieved 2 May 2015.
  23. "HTML5: A Vocabulary and Associated APIs for HTML and XHTML, W3C Working Draft". W3C. 5 April 2011..
  24. HTML 4.01, W3C, retrieved 2012-03-26
  25. Tittel, Ed; Burmeister, Mary C. (2005). HTML 4 for dummies (5th ed.). Hoboken, New Jersey: Wiley. p. 96. ISBN 978-0-7645-8917-1. Retrieved 7 August 2022.
  26. "ServerWriter -- /Provider". W3C.
  27. "HTML 5.2". W3C.
  28. Acronym tag, acronym.
  29. 4.6 Text-level semantics — The b element, Developers.whatwg.org, retrieved 2012-03-26
  30. 4.6 Text-level semantics — The i element, Developers.whatwg.org, retrieved 2012-03-26
  31. 4.6 Text-level semantics — The u element, Developers.whatwg.org, retrieved 2012-03-26
  32. 4.6 Text-level semantics — The small element, Developers.whatwg.org, retrieved 2012-03-26
  33. 4.6 Text-level semantics — The s element, Developers.whatwg.org, retrieved 2012-03-26
  34. ^ 11 Obsolete features — HTML5, W3C, retrieved 2012-03-26
  35. "HTML5 specification finalized, squabbling over specs continues". Ars Technica. 29 October 2014. Retrieved 29 October 2014.
  36. "9.2.1 Phrase elements: EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, ABBR, and ACRONYM". HTML 4.01 Specification. W3C. 24 December 1999. Retrieved 26 July 2018.
  37. HTML 5.2 W3C Recommendation, at "§4.5.6. The cite element".
  38. HTML Living Standard, at "§4.5.6 The cite element".
  39. "<data>". MDN Web Docs.
  40. "HTML <rb> Tag". www.quackit.com.
  41. "<rp>: The Ruby Fallback Parenthesis element". MDN Web Docs.
  42. "<rt>: The Ruby Text element". MDN Web Docs.
  43. "<rtc>: The Ruby Text Container element". MDN Web Docs.
  44. "<ruby>". MDN Web Docs.
  45. "<template>". MDN Web Docs.
  46. "<time>". MDN Web Docs.
  47. "<wbr>". MDN Web Docs.
  48. Jennifer Kyrnin Archived 2012-11-02 at the Wayback Machine <embed>
  49. W3Schools about <embed>
  50. The alt attribute's text cannot be styled with markup; as a result, other methods of alternative text presentation, such as Fahrner Image Replacement, 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.
  51. "What's New in Internet Explorer 8 – Accessibility and ARIA". MSDN. Microsoft. Retrieved 2009-07-22.
  52. Bug 5566 – ALT attribute value sometimes not displayed when image is missing, Bugs.webkit.org, retrieved 2012-03-26
  53. WWW-Talk Jan-Mar 1993: proposed new tag: IMG, 1997.webhistory.org, retrieved 2012-03-26
  54. "Are frames accessible?". ...frames do present additional usability challenges that are unique to users with disabilities, particularly those who use screen readers.
  55. "Objects, Images, and Applets". W3C. Retrieved 2008-12-20.
  56. "InState Longdesc". Retrieved 2011-09-05.
  57. "Creating Accessible Images". WebAim. Retrieved 2008-12-20.
  58. Longdesc usage - WHATWG Wiki, Wiki.whatwg.org, retrieved 2012-03-26
  59. "Bug 13461 - Commentary on Issue #30 (longdesc) from the Association of American Publishers". Retrieved 2011-09-05.
  60. ^ "Obsolete – Non-conforming features". HTML Living Standard. WHATWG. July 22, 2022. Retrieved August 7, 2022.
  61. "<xmp>". MDN Web Docs. 24 February 2023.
  62. ^ Chisholm, Wendy; Vanderheiden, Gregg; Jacobs, Ian (1999-05-05). "Web Content Accessibility Guidelines 1.0". World Wide Web Consortium. Retrieved 2010-07-20.
  63. "HTML standard". html.spec.whatwg.org.

Bibliography

HTML standards

HTML 2.0:
Berners-Lee, Tim; Connolly, Dan (November 1995). Hypertext Markup Language - 2.0 (RFC 1866). IETF. doi:10.17487/RFC1866. RFC 1866. Retrieved 2009-03-24.
HTML 3.2:
Raggett, Dave (1997-01-14). "HTML 3.2 Reference Specification". W3C. Retrieved 2009-03-27.
HTML 4.01:
Raggett, Dave; Le Hors, Arnaud; Jacobs, Ian (1999-12-24). "HTML 4.01 Specification". W3C. Retrieved 2009-03-24. (HTML 4.01 superseded 4.0 (1998), which was never widely implemented, and all earlier versions. Superseded in turn on 2018-03-27 by HTML 5.2).
XHTML 1.0:
"XHTML 1.0: The Extensible HyperText Markup Language (Second Edition)". Revised version. W3C. 2002-08-01 . Retrieved 2009-03-24.
XHTML 1.1:
Altheim, Murray; McCarron, Shane; Ishikawa, Masayasu, eds. (2010-11-23) . "XHTML 1.1 - Module-based XHTML - Second Edition". Revised version. W3C. Retrieved 2018-07-26. (Superseded on 2018-03-27 by HTML 5.2.)
Austin, Daniel; Peruvemba, Subramanian; McCarron, Shane; Ishikawa, Masayasu; Birbeck, Mark; Altheim, Murray; Boumphrey, Frank; Dooley, Sam; Schnitzenbaumer, Sebastian; Wugofski, Ted, eds. (2010-07-29) . "XHTML Modularization 1.1 - Second Edition". Revised version. W3C. Retrieved 2018-07-26. (A more detailed version of the above. Also superseded on 2018-03-27 by HTML 5.2.)
W3C HTML 5.2:
Faulkner, Steve; Eicholz, Arron; Leithead, Travis; Danilo, Alex; Moon, Sangwhan; Doyle Navara, Erika; O'Connor, Theresa; Berjon, Robin, eds. (2017-12-14) . "HTML 5.2 W3C Recommendation". Revised version. W3C. Retrieved 2018-07-26. Supersedes all previous versions of HTML and XHTML, including HTML 5.1.
WHATWG HTML5 Living Standard:
Hickson, Ian, ed. (2018-07-25). "HTML Living Standard". One-page Version. WHATWG. Retrieved 2018-07-26. Also available as a Multipage Version, and Developer's Edition (also multi-page, with a search function and other gadgets, and minus details only of interest to browser vendors).

Other sources

HTML Tags:
Berners-Lee, Tim (1992-11-03). "HTML Tags". Retrieved 2009-03-28. (Part of the first published description of HTML.)
HTML Internet Draft 1.2:
Berners-Lee, Tim; Connolly, Dan (June 1993). "Hypertext Markup Language (HTML)". Retrieved 2009-03-28.
HTML 3.0 Drafts:
Raggett, Dave (1995-03-24). "HyperText Markup Language Specification Version 3.0 (draft)". Retrieved 2009-04-18. (This is the final draft of HTML 3.0, which expired without being developed further.)
HTML Tables:
Raggett, Dave (May 1996). HTML Tables (RFC 1942). IETF. doi:10.17487/RFC1942. RFC 1942. Retrieved 2009-03-22.
XML 1.0:
Bray, Tim; Paoli, Jean; Sperberg-McQueen, C. Michael; Maler, Eve; Yergeau, François, eds. (2008-11-26). "Extensible Markup Language (XML) 1.0 (Fifth Edition)". W3C. Retrieved 2009-03-20.
CSS 1:
Lie, Håkon Wium; Bos, Bert (2008-04-11) . "Cascading Style Sheets, Level 1". Revised version. W3C. Retrieved 2018-07-26.
CSS 2.1:
Bos, Bert; Çelik, Tantek; Hickson, Ian; Lie, Håkon Wium (12 April 2016) . "Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification". Revised version. W3C. Retrieved 2018-07-26.
CSS 3 and 4:
Atkins, Tab Jr.; Eternad, Elika J.; Rivoal, Florian (31 January 2017). "CSS Snapshot 2017". W3C. §2. Cascading Style Sheets (CSS) – The Official Definition. Retrieved 2018-07-26. (List of active specifications that have superseded CSS 2.1, as of the publication date.)
"CSS Current Status". W3C. 2018. Retrieved 2018-07-26. (CSS levels 3 and 4 are developed as independent modules, indexed at that page.)

External links

Categories: