Knowledge (XXG)

HTML element

Source 📝

1208: 6995:, 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. 732: 1203:{\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}}} 6991:
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
390: 7632: 1319:, 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 10939:
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
10908:
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
8191:
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
3092:
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
2052:
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
9852:
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
7115:
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
1688:
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
623:
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
8729:
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
6990:
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
9628:
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,
497:, 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 3115:, 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. 9948:, 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 3999:
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
603:. (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 1990:. 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. 680:
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
2083:
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.
5605:
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
414:
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
10885:
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:
3352:
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
5882:
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
402:
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
3069:
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.
1895:). 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 4771:
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
2994:
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
9629:
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
2064:) 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. 1869:) 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. 7124:
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.
12544:
Austin, Daniel; Peruvemba, Subramanian; McCarron, Shane; Ishikawa, Masayasu; Birbeck, Mark; Altheim, Murray; Boumphrey, Frank; Dooley, Sam; Schnitzenbaumer, Sebastian; Wugofski, Ted, eds. (2010-07-29) .
2611:
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
639:(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. 3107:
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
2026:
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
11038:
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.
9633:
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
2623:. 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 350:(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 10700:
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:
4144:
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
10041:
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
7421:
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.
4707:
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.
6828:
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
9208:. 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 10376:
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
6897:
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.
5698:. 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." 1442:
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
3298:
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.
11786: 172: 1971:
normative content. They are broken down into "obsolete but conforming" for which implementation instructions exist and "non-conforming" ones that should be replaced.
1269:(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: 468:
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
7191:
automatically generate quotation marks in conjunction with style sheets. Practical concerns due to browser non-compliance may force authors to find workarounds. The
3474:
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:
3074: 12576:
Faulkner, Steve; Eicholz, Arron; Leithead, Travis; Danilo, Alex; Moon, Sangwhan; Doyle Navara, Erika; O'Connor, Theresa; Berjon, Robin, eds. (2017-12-14) .
2164:
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.
1225:. 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 3061:
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.
1468:
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:
2523:. Several common relationships are defined, that may be exposed to users through the browser interface rather than directly in the web page, such as: 3100:
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.
2087:
An HTML document can also be extended through the use of scripts to provide additional behaviors beyond the abilities of HTML hyperlinks and forms.
10826:
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
8199:(These elements are either block or inline elements, but are collected here as their use is more restricted than other inline or block elements.) 8055:
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
3290:
meaning any of the available heading levels. Most visual browsers show headings as large bold text by default, though this can be overridden with
298: 1943:, which contain deprecated elements, but which were intended to provide a transitional period during which authors could update their practices; 12075:, 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. 4913:
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:
432:
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, (...)
11580: 11087: 12161:...frames do present additional usability challenges that are unique to users with disabilities, particularly those who use screen readers. 5375:
These elements are useful primarily for documenting computer code development and user interaction through differentiation of source code (
1633:) element. The attributes included in the element will then point to the external file in question. Another example of a void element is 715:
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.
12038: 10308:
This element enabled NeXT web designing tool to generate automatic NAME labels for its anchors and was itself automatically generated.
8767:
obsoleted by more advanced HTML forms introduced in the early to mid-1990s. Represents a set of hyperlinks composed of a base URI, an
5028:
In most graphical browsers, when the cursor hovers over a link, the cursor changes into a hand with an extended index finger and the
12686: 12389: 9175:. The content of this element is restricted to plain text, which appears in the text area as default text when the page is loaded. 5611: 1597:), which contains any HTML attributes. They may not contain any children, such as text or other elements. For compatibility with 3119:
The above section refers only to the detailed implementation of CSS rendering and has no relevance to HTML elements themselves.
4802:, the anchor becomes a hyperlink to either another part of the document or another resource (e.g. a webpage) using an external 10812: 10510:
Creates an absolute positioned and framed layer. Can be done with frames and/or CSS instead. There are attributes, including
7581:, optionally with time and time zone information. Also allows times and dates to be represented in a machine-readable format. 5070:
Phrase elements are used for marking up phrases and adding structure or semantic meaning to text fragments. For example, the
2765: 329: 12071:
The alt attribute's text cannot be styled with markup; as a result, other methods of alternative text presentation, such as
2198:
document; all other elements are contained in this. The HTML element delimits the beginning and the end of an HTML document.
2056:
Historically, user agents did not always support these features. In the 1990s, as a stop-gap, presentational elements (like
9240:
are possible in HTML Transitional, but most of these are invalid in HTML Strict and can be replaced with style sheets. The
8552:– characters are displayed as an asterisk, a dot, or another replacement. The password is still submitted to the server as 2322:
and other links in the document. Must appear before any element that refers to an external resource. HTML permits only one
2018:
to refer to both deprecated and invalid status, and to elements that are expected to be formally deprecated in the future.
4538: 2380: 2035: 1685: 303: 260: 199: 6501:
with size 4. Sizes are from 1 to 7. The standard size is 3, unless otherwise specified in the <body> or other tags.
354:
in 1993 and there have since been many versions of HTML. The current de facto standard is governed by the industry group
10626:
Creates scrolling text. Can be done with scripting instead. (This effect may have negative consequences for people with
4659:
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.
2030:. HTML is used to represent the structure or content of a document, its presentation remains the sole responsibility of 1876:(a simplified form of SGML) introduced mechanisms to allow anyone to develop their own elements and incorporate them in 9598:, this section may be repeated by the user agent if the table is split across pages (in printing or other paged media). 9518:. This section may be repeated by the user agent if the table is split across pages (in printing or other paged media). 1629:(for a thematic break). Other such elements are often place-holders which reference external files, such as the image ( 12090: 10661: 8417:. If multiple radio buttons are given the same name, the user will only be able to select one of them from this group. 8008: 7196: 6979: 4307: 3994: 167: 2710:, may be supplied to specify a semantic framework that defines the meaning of the key and its value. For example, in 525:
tag indicating its end. But since the DTD states that paragraph elements cannot be nested, an HTML document fragment
373:
and formatting to parts of a document (e.g., make text bold, organize it into paragraphs, lists and tables, or embed
11861: 10210:
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
12635:(also multi-page, with a search function and other gadgets, and minus details only of interest to browser vendors). 11524: 1589:(also sometimes called empty elements, single elements or stand-alone elements) only have a start tag (in the form 11209: 3943:
Used for content in a document which is separate from the main page content, for example, sidebars or advertising.
30:
This article is about the HTML elements in general. For information on how to format Knowledge (XXG) entries, see
12072: 11476: 2706:
HTML attributes describing aspects of the HTML page. To prevent possible ambiguity, an optional third attribute,
255: 501:(per the DTD), its explicit statement in any given document is not generally required. As a simple example, the 12790: 12280: 10630:; its use on the public Internet should follow the appropriate guidelines.) There are three options, including 7609:
Was widely used (and supported by all major browsers) for years despite being non-standard until finally being
6926:
Marks an inline section of text in which the reading direction is the opposite from that of the parent element.
6052:
element denotes information that is "no longer accurate or no longer relevant", and is not to be confused with
4818: 4803: 3112: 2080: 2007: 1933: 1217:
In the HTML syntax, most elements are written with a start tag and an end tag, with the content in between. An
494: 12658: 689:
behaviors attached to them by default, including the relevance of the box model for particular element types.
9129:
Creates a selection list, from which the user can select a single option. May be rendered as a dropdown list.
8730:
current form. Not displayed to the user but data can still be altered client-side by editing the HTML source.
8328:
A container for adding structure to forms. For example, a series of related controls can be grouped within a
6986:
was for "a citation or a reference to other sources" without any particular limitations or requirements. The
3795:
A directory listing. The original purpose of this element was never widely supported; deprecated in favor of
3590:, Hebrew, Georgian, and Armenian script. The attribute is deprecated in HTML 3.2 and 4.01, but not in HTML 5. 2053:
an audio-only user agent. The structural and semantic functions of the markup remain identical in each case.
1846:
HTML elements are defined in a series of freely available open standards issued since 1995, initially by the
11717: 11234: 11113: 10627: 10443: 3085:
of an element is the actual text (or other media) placed between the opening and closing tags of an element.
3057:
with block margins, width, and height properties which can be set independently of the surrounding elements.
3050:. While all elements are part of the document sequence, block elements appear within their parent elements: 366: 12194: 10357: 10266:
This element displayed the text inside the tags in a monospace font and without interpreting the HTML. The
10165:
This element displayed the text inside the tags in a monospace font and without interpreting the HTML. The
8003:-type the user agent understands, such as an embedded HTML page, a file to be handled by a plug-in such as 5794:. It denotes "a different quality of text" or "an alternate voice or mood" e.g., a thought, a ship name, a 4747: 12485:(1998), which was never widely implemented, and all earlier versions. Superseded in turn on 2018-03-27 by 9623: 8557: 6829: 4145: 3700:
the CSS method is supported in HTML5; the attribute is deprecated in HTML 3.2 and 4.01. CSS also provides
3291: 2901: 2900:. Can either act as a container for style instructions or link to external style sheets – for example, in 2864: 2468: 2027: 157: 11843: 11184: 10360:(accomplished via CSS; the <marquee> tag itself is deprecated and no longer works in most browsers) 5782:. (Purely typographic italics have many non-emphasis purposes, as HTML 5 more explicitly recognized.) In 2801:
element, it could potentially be used to extract foreign data and associate it with the current document.
11739: 11695: 11673: 11651: 6833: 6255: 5795: 5630:
document, the use of these elements is no longer discouraged, provided that it is semantically correct.
4578:, other elements can be presented in the same way.) This element can contain any inline element except: 4530: 4252:
Used for document footers. These might contain author or copyright information, or links to other pages.
4149: 2834:
attribute. Also usable in the document body to dynamically generate either both block or inline content.
2042: 636: 189: 35: 7850:
Inserts a non-standard object (like applet) or external content (typically non-HTML) into the document.
5682:
element usually has the same effect in visual browsers, as well as having more semantic meaning, under
12760: 12413: 11982: 7920: 7904: 7643:. The reason given is: How do current browsers handle <applet>? What does HTML 5 say about it?. 682: 194: 111: 11135: 4464:
Used in navigational sections of articles (areas of webpages which contain links to other webpages).
654:". This is applied to those elements that CSS considers to be "block" elements, set through the CSS 11764: 9642: 4822: 4688:
Places a script in the document. Also usable in the head and in inline contexts. It may be used as
1690: 1503: 389: 11505:. World Wide Web Consortium. 24 December 1999. §10.3 Definition lists: the DL, DT, and DD elements 11468: 3629:
An unordered (bulleted) list. The type of list item marker can be specified in an HTML attribute:
3294:. Heading elements are not intended merely for creating large or bold text – in fact, they should 1563:. In some versions of HTML, the end tag is optional for some elements. The end tag is required in 12968: 12134: 12000: 11964: 11874: 10461: 8193: 8004: 7578: 7411: 4027: 3974: 322: 211: 12310: 12214: 12018: 11946: 10905:
Comments can even appear before the doctype declaration; no other tags are permitted to do this.
6766: 5891:
and admonishes designers not to use underlined text where it could be confused for a hyper-link.
2519:. A less-common, but important, usage is to supply navigation hints consistently through use of 1548:, but no elements (all tags, apart from the applicable end tag, will be interpreted as content); 692:
Note though that this CSS behavior can, and frequently is, changed from the default. Lists with
12085: 11928: 11910: 11569: 11157: 10767:
Specifies alternative content, if the embed cannot be rendered. Replaced by the content of the
8434:
is preferred if possible (i.e., if the client supports it) as it provides richer possibilities.
2830:
Can act as a container for script instructions or link to an external script with the optional
1446:, and was used in HTML specifications, but in recent years, lower-case has become more common. 672:
HTML also has a similar concept, although different, and the two are very frequently confused.
12860: 12817: 12353: 11576: 9945: 8599: 7892: 7738: 2998: 2620: 1986:, which also deprecated a further ten elements. All of these, plus two others, are invalid in 1777: 5991:
element denotes "side comments such as small print." This has caused some confusion with the
5887:
specification reminds developers that other elements are almost always more appropriate than
3342:"Definition list" redirects here. For Knowledge (XXG)'s article on lists of definitions, see 2049:
files, separate from text, though they can also be considered part of the content of a page.
1734:
define desired behavior or indicate additional element properties. Most attributes require a
12973: 12750: 12403: 12258:"Bug 13461 - Commentary on Issue #30 (longdesc) from the Association of American Publishers" 12035: 10421: 9244:
attribute is informally required for accessibility purposes, though its usage is not simple.
9205: 8772: 8266:
A generic form button which can contain a range of other elements to create complex buttons.
3349: 177: 42: 10909:
comment mishandling issues (Internet Explorer 6 accounts for most of this high percentage).
10368: 2797:
Used for including generic objects within the document header. Though rarely used within a
1541:) marking the beginning of an element, which may incorporate any number of HTML attributes; 12682: 12654: 12385: 12042: 11545: 10622: 10129: 9720: 9237: 9172: 8620: 8514:
sets the maximum number of characters the user can enter (which may be greater than size).
8052: 7916: 4814: 3910: 2612: 2562: 2440:
could either appear in the document head or in the body, but only once in a document. See
2327: 2099: 351: 138: 79: 12903:(List of active specifications that have superseded CSS 2.1, as of the publication date.) 12852: 11808: 10731:
is a proprietary element which is recognized by most browsers for compatibility reasons;
1780:
attributes, on the other hand, do not require a value to be specified. An example is the
481: 10385:
This section lists some widely used obsolete elements, which means they are not used in
7645:
Please help update this article to reflect recent events or newly available information.
12690: 12156: 11809:"9.2.1 Phrase elements: EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, ABBR, and ACRONYM" 11498: 11014: 9712:
elements for a document. The layout of frames is given by comma separated lists in the
8700:
Produces a slider for that returns a number, but the number is not visible to the user.
8196:, client-side, or both) must be used to process the user's input once it is submitted. 7813: 7378: 7345: 7312: 7279: 7246: 1918: 1730: 1485: 1381: 378: 362: 282: 145: 89: 12257: 12173: 8755:
could either appear in the document head or in the body, but only once in a document.
12962: 12942: 12727:(This is the final draft of HTML 3.0, which expired without being developed further.) 11621: 10506: 10416: 9941: 9937: 8233:
element specifies and operates the overall action of a form area, using the required
7908: 7881: 7044: 5774:
has the same visual effect in most browsers, as well as having a semantic meaning as
5343: 5037: 2371:
Specifies a base font size, typeface, and color for the document. Used together with
1816:) syntax, though, a value is required, and the name should be repeated as the value: 1222: 651: 315: 184: 150: 133: 31: 10480:
and later. The replacement CSS tag, while standard, is not required to be supported.
2282:
Both the start and end tags may be omitted and inferred from child elements (HTML5).
2242:
Both the start and end tags may be omitted and inferred from child elements (HTML5).
12938: 12711: 12462: 12435: 11892: 11261: 10816: 9397: 8413: 6824: 5104: 4310:(originally: horizontal rule). Presentational rules can be drawn with style sheets. 4140: 2602: 2191: 1858: 1389: 434:
The contents of the element must be placed between just after the start tag (which
128: 123: 69: 48:"Font color" redirects here. For OpenType fonts featuring multicolored glyphs, see 12482: 11056:
One minor difference is that XML, even after the DOM interface, is case-sensitive.
9926:
for the image, frame, or iframe in question. This attribute should contain a URL,
12908: 11638: 10169:
specification recommended rendering the element at up to 132 characters per line.
1259:
the end tag, or even the start tag, to be present. Some elements, the so-called
12925:(CSS levels 3 and 4 are developed as independent modules, indexed at that page.) 12856: 12763: 12740: 12715: 12607: 12416: 12393: 11392: 11339: 10956: 10921: 10916:
Placing comments – or indeed any characters except for white-space – before the
10837:(this ends the comment so it trivially follows it can not appear inside it) and 10820: 10380:, this page contains the earliest surviving edit on the English Knowledge (XXG). 8578: 8186: 7692:, as it could only be used with Java applets, and had accessibility limitations. 7685: 6459: 6386:
attribute. Examples (all uses are deprecated, use CSS equivalents if possible):
6263: 5607: 4784: 4281:
Used for document headers. These typically contain content introducing the page.
3582:
CSS provides several other options not available as pure-HTML markup, including
3431:
A value in a description list (previously definition data in a definition list).
3002: 2762: 2520: 2376: 1949:, which are versions of the Transitional DTDs which also allow authors to write 1907:
Since the first version of HTML, several elements have become outmoded, and are
1866: 1622: 1575:
element, which must not contain other elements (including markup of text), only
1439:
strictly in reference to the markup delimiting the start and end of an element.
627:
HTML as used on the current web is likely to be either treated as XML, by being
447: 277: 272: 162: 106: 17: 12112: 12056: 11603: 11525:"HTML5: A Vocabulary and Associated APIs for HTML and XHTML, W3C Working Draft" 11473:
HTML5: A vocabulary and associated APIs for HTML and XHTML – W3C Recommendation
7079:
Inserted text. Often used to mark up replacement text for material struck with
3392:
A name in a description list (previously definition term in a definition list).
2041:
Behavior (interactivity) is also kept separate from content, and is handled by
2038:
is suggested as part of the CSS standard, giving a default rendering for HTML.
12786: 12546: 10581: 8226: 8159: 7818: 7775: 3980: 2651: 1909: 1862: 1432: 619:
SGML is complex, which has limited its widespread understanding and adoption.
381:
specified. Elements can also have content, including other elements and text.
221: 216: 94: 84: 11257: 6319:
for variables (usually rendered italic, and not with a change to monospace),
3983:, for when the quotation includes block level elements, e.g. paragraphs. The 3093:
an element's padding increases the amount of space this element will take up.
1431:
Informally, HTML elements are sometimes referred to as "tags" (an example of
12114:
Bug 5566 – ALT attribute value sometimes not displayed when image is missing
10386: 10211: 8776: 8768: 8553: 7963: 7468: 7219:) using style sheets. For example, with a suitable CSS rule associated with 7088: 5867: 5779: 5683: 4792: 4534: 4445:, removed in HTML 5.2, but is included in the HTML Living Standard in 2019. 2981: 2002: 1998: 1929: 1925: 513:
tag indicating the start of a paragraph element should be complemented by a
374: 370: 12439: 10446:; its use on the public Internet should follow the appropriate guidelines.) 1932:, the status of elements is complicated by the existence of three types of 1484:) marking the beginning of an element, which may incorporate any number of 12628: 12522:
Altheim, Murray; McCarron, Shane; Ishikawa, Masayasu, eds. (2010-11-23) .
10270:
specification recommended rendering the element at 80 characters per line.
2001:(2001), does not include frames at all; it is approximately equivalent to 607:
but only by using an SGML—or HTML—aware parser with knowledge of the DTD.
12848: 12821: 12782: 12235: 9634: 9320:
header cell; contents are conventionally displayed bold and centered. An
8762: 8394: 7887:
provides alternative text in case the image cannot be displayed. (Though
3343: 3073:
The rectangular structure of a block element is often referred to as the
2985: 2608: 2441: 2046: 1979: 1738:. In HTML, the value can be left unquoted if it does not include spaces ( 49: 12953: 12562:(A more detailed version of the above. Also superseded on 2018-03-27 by 11357: 8510:
attribute specifies the default width of the input in character-widths.
7718:. As of 2011, still widely used as the implementations of the replacing 4860:
is not necessary, although this way of adding anchors continues to work.
4545:, white-space should be rendered as authored. (With the CSS properties: 3077:, and is made up of several parts. Each element contains the following: 2977:
document. User agents may use the title in different ways. For example:
12885:
Atkins, Tab Jr.; Eternad, Elika J.; Rivoal, Florian (31 January 2017).
10465: 9646: 9638: 8129:
Provides text tracks, like subtitles and captions, for audio and video.
7896: 7296: 5184: 5033: 2239:
Container for processing information and metadata for an HTML document.
12499:"XHTML 1.0: The Extensible HyperText Markup Language (Second Edition)" 10815:
in HTML (and related XML, SGML and SHTML) uses the same syntax as the
6658:(the HTML specification does not define the relationship between size 4339:
Marks a section of inserted content. This element can also be used as
4054:
Creates a block-level center-aligned division. Deprecated in favor of
3684:
with one of the following (the same values are used in HTML and CSS):
12755: 12615: 12408: 12288: 11002:
will show up on-screen. Other HTML editors may have this same defect.
9952:. The publishing industry has responded, advocating the retention of 8364:
elements allow a variety of standard form controls to be implemented.
8011: 6033: 5955: 5838: 5738: 5650: 4105:
Marks a deleted section of content. This element can also be used as
1987: 1983: 1443: 355: 267: 243: 12632: 5040:
the same way, although this is not what the specification calls for.
4696:
attribute to supply a URL from which to load the script, or used as
2684:
specifies that the page should be served with an HTTP header called
1913:
in later standards, or do not appear at all, in which case they are
12865:"Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification" 9844:
An inline frame places another HTML document in a frame. Unlike an
7911:, on the other hand, do not display the alt attribute at all.) The 7263: 6955:
A citation or a reference for a quote or statement in the document.
4825:. In HTML5, any element can now be made into a target by using the 3042:
In visual browsers, displayable elements can be rendered as either
11229: 11227: 9321: 8561: 7873: 7329: 7215:
Lengthy inline quotations may be displayed as indented blocks (as
6045: 5984: 5884: 5875: 5822: 5783: 5687: 5627: 2974: 2628: 2467:
links, or alternate versions. A common use is to link to external
2076: 1978:) contained four deprecated elements, one of which was invalid in 1877: 1813: 1610: 1598: 1564: 1316: 632: 628: 608: 388: 248: 238: 233: 226: 101: 74: 12886: 12523: 11362:
Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification
9807:
Contains normal HTML content for user agents that do not support
8088:
Specifies different sources for audio or video. Makes use of the
7116:
and ending in a final paragraph would need to use three separate
6882: 5342:; originally strong emphasis (conventionally displayed bold). An 4738:
element; they must be wholly nested within block-level elements.
3144:
Creates a paragraph, perhaps the most common block level element.
1525:(also known as text or text-only elements) are constructed with: 1458:
elements: normal elements, raw text elements, and void elements.
12746: 12611: 12594: 12577: 12498: 12399: 12331:
Chisholm, Wendy; Vanderheiden, Gregg; Jacobs, Ian (1999-05-05).
11787:"HTML5 specification finalized, squabbling over specs continues" 11019: 10963:, makes comments that are not embedded in the syntax structure; 10128:
The following elements were part of the early HTML developed by
9930:– as is commonly mistaken – the text of the description itself. 9897: 9787: 8641: 8166:
attribute. Supported video formats vary from browser to browser.
8000: 7782:
attribute. Supported audio formats vary from browser to browser.
7595: 7414:
in the document. Also usable in the head and in block contexts.
6982:, including with regard to this element. In HTML 4 and earlier, 6911: 4653:
Used for generic sections of a document. This is different from
2970: 2647: 2195: 2157:, which provide links to scripts, are optional in most elements. 1975: 1896: 1847: 1455: 490: 347: 60: 12466: 12332: 10931:
For compatibility with some pre-1995 browsers, the contents of
10045:
element whenever possible, as this can also aid sighted users.
611:
creates a similar result by defining what tags can be omitted.
12912: 12890: 12868: 12864: 12829: 12798: 12593:
Supersedes all previous versions of HTML and XHTML, including
12581: 12550: 12527: 12502: 12470: 12443: 11816: 11529: 11400: 11365: 11343: 11242: 11217: 11161: 11143: 11121: 10377: 9919: 7625: 7230: 7225:<q class="lengthy">Lengthy quote here.</q> 6987: 5746: 3704:, and the ability to replace these bullets with custom images. 3587: 3108: 2031: 1884: 1873: 1851: 1771: 1614: 686: 620: 438:, in certain cases) and just before the end tag (which again, 204: 12825: 12716:"HyperText Markup Language Specification Version 3.0 (draft)" 11391:
Ferraiolo, J.; Fujisawa, J.; Jackson, D., eds. (2003-01-14).
9164:
A multiple-line text area, the size of which is specified by
4478: 4060:
or another element with centering defined using style sheets.
3012:
element must not contain other elements, only text. Only one
1601:, the HTML specification allows an optional space and slash ( 650:
Part of this CSS presentation behavior is the notion of the "
12893:. §2. Cascading Style Sheets (CSS) – The Official Definition 12794: 12086:"What's New in Internet Explorer 8 – Accessibility and ARIA" 11179: 11177: 11175: 11173: 11171: 10442:(This effect may have negative consequences for people with 9143: 8974: 8878:. Clicking on the label fires a click on the matching input. 8819: 7995:
Includes an object in the page of the type specified by the
4863:
To illustrate: the header of a table of contents section on
3993:
element) may give the source, and must be a fully qualified
3005:
may pay particular attention to the words used in the title.
1396:
attribute within its opening tag. This would be written as:
11289:(The ability to produce additional elements is part of the 11245:. 24 December 1999. §7.5.3 Block-level and inline elements. 9301: 4529:
text. Text within this element is typically displayed in a
4511: 1899:
for a discussion of the minor differences between the two.
41:"nobr" redirects here. For the chemical compound NOBr, see 11047:
A macro-like feature of DTDs may still be used within XML.
8028: 7195:
attribute gives the source, and must be a fully qualified
6378:
attribute (note the American spelling), typeface with the
4324: 4123: 2279:
Container for the displayable content of an HTML document.
1917:(and will be found invalid, and perhaps not displayed, by 11759: 11757: 9872:
First introduced by Microsoft Internet Explorer in 1997,
9649:
uses iframes to display banners on third party websites.
9343: 7362: 7147:. Intended for highlighting relevant text in a quotation. 7014:
Links inline content with a machine-readable translation.
6017: 5722: 4090: 3377: 3326: 3248: 3232: 3216: 3200: 3184: 3168: 2991:
It may become the default file-name when saving the page.
11575:(5th ed.). Hoboken, New Jersey: Wiley. p. 96. 10912:
There are a few compatibility quirks involving comments:
10747: 9108: 7577:
Represents a time on the 24-hour clock or a date on the
6070:(having not appeared in any previous standard), and was 4401:
HTML 2.0: A menu listing. Should be more compact than a
4295: 4204: 3957: 3775: 3614: 2143:
attribute is valid in most document body elements (e.g.
10464:
and is mostly recognized by its descendants, including
9861:, an inline HTML code is embedded to a frame using the 9461: 9013: 7381:
for showing the pronunciation of East Asian characters.
6160: 4806:. Alternatively (and sometimes concurrently), with the 4034: 3054:
as rectangular objects which do not break across lines;
2984:
when the window is open, and (where applicable) in the
12795:"Extensible Markup Language (XML) 1.0 (Fifth Edition)" 11214:
Document Object Model (DOM) Level 2 HTML Specification
10246: 10145: 9829: 9575: 9499: 9423: 9381: 9168:(where a column is a one-character width of text) and 9079: 7857:, but then was added back into the HTML5 specification 5939: 5088: 4867:'s homepage could be turned into a target by writing: 4357: 3455: 2136:
can occur at any point in the document (head or body).
1555:, in which the element name is prefixed with a slash: 1221:
is composed of the name of the element, surrounded by
10420:
Causes text to blink. Introduced in imitation of the
9940:
to display image information for computer users with
9761:. A separate document is linked to a frame using the 8548:. The difference is that text typed in this field is 8493: 7664: 7451: 4985:
may be set to give brief information about the link:
4726:
Inline elements cannot be placed directly inside the
2969:
This tag defines a document title. Required in every
1748:), or it can be quoted with single or double quotes ( 1384:
are specified inside the start tag. For example, the
735: 12793:; Maler, Eve; Yergeau, François, eds. (2008-11-26). 12275: 12273: 10389:
code. They may not be supported in all user agents.
9537: 8717: 8704: 8691: 8674: 8661: 8648: 8627: 8606: 8585: 8568: 8535: 8518: 8476: 8455: 8438: 8421: 8402: 8383: 6857: 5790:
has its own semantic meaning, distinct from that of
5428: 5324: 5243: 4449: 3416: 1959:, which is the up-to-date (as at 1999) form of HTML. 11911:"<rp>: The Ruby Fallback Parenthesis element" 11066: 10964: 10860: 10850: 10846: 10842: 10838: 10834: 10827: 10802: 10780: 10768: 10720: 10701: 10649: 10569: 10449: 10425: 10191: 9263: 8280: 8162:to the page. The video URL is determined using the 7947: 7778:to the page. The audio URL is determined using the 7494: 7473: 7435: 7278:Provides fallback parenthesis for browsers lacking 7176:An inline quotation (for block level quotation see 6733: 6712: 6690: 6669: 6571: 6538: 6504: 6467: 6426: 6389: 6355: 6267: 6185: 6119: 5963: 5846: 5750: 5658: 5412: 5400: 5388: 5376: 5188: 5172: 5108: 4986: 4948: 4914: 4868: 4830: 4727: 4546: 3796: 3728: 3654: 3631: 3499: 3476: 3129: 2909: 2868: 2711: 2655: 2524: 2472: 2429: 2355: 2201:
Both the start and end tags may be omitted (HTML5).
1265:, do not have an end tag. A typical example is the 693: 655: 635:; in either case the parsing of document tags into 559: 526: 514: 502: 369:, such as text nodes, and HTML elements, which add 12670:(Part of the first published description of HTML.) 11568: 11108: 11106: 10680: 9688: 9324:user agent may use a louder voice for these items. 8759:operated as a primitive HTML search form; but was 8313: 7533: 7064: 6940: 6382:attribute, and absolute or relative size with the 6335: 6235: 5557: 5471: 5282: 2160:For user agents which do not operate scripts, the 1202: 12524:"XHTML 1.1 - Module-based XHTML - Second Edition" 10600: 10292: 9112: 7028: 6307:; not supported in HTML5. Possible replacements: 5634: 5151: 4638: 4219:A caption for an image. Always placed inside the 3893: 3854: 3279:. They are sometimes referred to collectively as 2627:element is defined by its attributes. Outside of 2014:A common source of confusion is the loose use of 1242:In the HTML syntax, most elements are written ... 1128: 1119: 852: 750: 11397:Scalable Vector Graphics (SVG) 1.1 Specification 11090:, not a URL; although URLs are a subset of IRIs. 10849:cannot appear at the beginning of a comment and 10022:This is an image of a two-layered birthday cake. 9050: 8892: 8251: 8208: 8073: 7980: 7880:attribute specifies the image URL. The required 7817:Adds a canvas whose contents can be edited with 7796: 7395: 6978:The HTML 5 specifications have been confusingly 5626:, assigning new semantic meaning to each. In an 5514: 5447:). Conventionally rendered in a mono-space font. 4755: 4673: 4266: 4237: 4171: 2815: 2782: 11220:. 9 January 2003. §1.3. XHTML and the HTML DOM. 10484: 10394: 10365: 10345: 9741: 9221: 8978: 8925: 8853: 8736: 8350: 8143: 8114: 7861: 7835: 7759: 7161: 4497:this can only be used as a block-level element. 3928: 2954: 2848: 2413: 2126:element can also be used to link style sheets.) 2067:External image files are incorporated with the 1880:documents, for use with XML-aware user agents. 1502:, in which the element name is prefixed with a 456: 427: 409: 11947:"<rtc>: The Ruby Text Container element" 11146:. 24 December 1999. §3.1 Introduction to SGML. 9757:Defines a single frame, or region, within the 9194:The format of HTML Tables was proposed in the 8204: 7726: 7722:are not consistent between different browsers. 7562: 7128: 6999: 6807: 5078:tags can be used for adding emphasis to text. 5036:or in some other manner. Some browsers render 4386: 4186:Used to group images and captions, along with 2980:Web browsers usually display it in a window's 2589: 2448: 2303: 2256: 2215: 2175: 12465:; Le Hors, Arnaud; Jacobs, Ian (1999-12-24). 11235:"§7 The global structure of an HTML document" 8857: 7311:Indicates pronunciation for a character in a 6094: 482:HTML 5.1 2nd Edition § 8.1.2.4. Optional tags 448:HTML 5.1 2nd Edition § 8.1.2. Elements § Tags 323: 8: 12136:WWW-Talk Jan-Mar 1993: proposed new tag: IMG 11719:4.6 Text-level semantics — The small element 11503:HTML 4.01 Specification – W3C Recommendation 11358:"Appendix D. Default style sheet for HTML 4" 9094:A bar for showing the progress of an action. 3914:Used for articles and other similar content. 3869:Contact information for the document author. 2753:element identifies itself as containing the 2459:Specifies links to other documents, such as 2326:element for each document. This element has 1883:Subsequently, HTML 4.01 was rewritten in an 12547:"XHTML Modularization 1.1 - Second Edition" 10037:Linking to the long description in the text 8760: 7891:is intended as alternative text, Microsoft 5694:has its own meaning, distinct from that of 5529:Sample output – from a program or script: ( 5486:Keyboard – text to be entered by the user ( 4533:exactly as it is laid out in the file (see 2273: 2233: 1693:is required before the last angle bracket: 1617:applications. Two common void elements are 12395:Hypertext Markup Language - 2.0 (RFC 1866) 12333:"Web Content Accessibility Guidelines 1.0" 11158:"HTML 4.01, §21, Document Type Definition" 8874:Creates a label for a form input, such as 8564:is needed if confidentiality is a concern. 8468:. The image URL may be specified with the 8336:added in order to identify their function. 6536:text with size 1 bigger than the standard. 4817:set, the element becomes a link target. A 2333:A development version of this element (as 2114:may link to shared external documents, or 1609:is permissible). The slash is required in 358:and is known as the HTML Living Standard. 330: 316: 56: 12754: 12407: 12281:"Obsolete – Non-conforming features" 11393:"§2.3 Options for using SVG in Web pages" 10866:is ill-formed and will yield the comment 10132:from 1989 to 1991; they are mentioned in 10104:"long description of the image" 8489:for resetting the form to default values. 6636: 6611: 1175: 1174: 1140: 1139: 1120: 1114: 1112: 1086: 1085: 1016: 1014: 998: 982: 981: 966: 965: 938: 895: 892: 891: 857: 855: 841: 840: 789: 787: 786: 764: 762: 745: 744: 741: 737: 734: 11741:4.6 Text-level semantics — The s element 11697:4.6 Text-level semantics — The u element 11675:4.6 Text-level semantics — The i element 11653:4.6 Text-level semantics — The b element 11567:Tittel, Ed; Burmeister, Mary C. (2005). 11479:. 28 October 2014. §4.4.8 The dl element 10424:. Can be done with CSS where supported: 8581:field (for uploading files to a server). 7872:Used by visual user agents to insert an 5107:, and can make the full form available: 4493:Replacement content for scripts. Unlike 4372:Contains the main content of a document. 2654:before the actual content. For example, 2162:<noscript>...</noscript> 2122:may contain embedded instructions. (The 1327:of the tag (not to be confused with the 1045: 1039: 1030: 754: 624:implied closures that are part of SGML. 27:Individual component of an HTML document 12539:(Superseded on 2018-03-27 by HTML 5.2.) 12326: 12324: 11102: 11031: 10140:and were never part of HTML standards. 9683:can be used in a normal document body. 9652:In HTML 4.01, a document may contain a 7548:Code fragments to be copied by scripts. 5202:"Hyper-Text Mark-up Language" 4928:"http://example.com#contents" 3987:attribute (not to be confused with the 2867:for the document, usually in the form, 2631:, it is often given without the slash ( 1625:, such as in a poem or an address) and 476:doesn't appear anywhere in the markup. 290: 59: 10920:will cause Internet Explorer 6 to use 9147: 8430:A general-purpose button. The element 8047:, and should only occur as a child of 7043:Deleted text. Typically rendered as a 5346:may use different voices for emphasis. 4947:or with a link on the same page like: 3263:Section headings at different levels. 1194: 1191: 1188: 1185: 1182: 1179: 1176: 1160: 1157: 1154: 1149: 1146: 1143: 1105: 1102: 1099: 1096: 1093: 1090: 1087: 1007: 1004: 1001: 995: 992: 989: 986: 983: 953: 950: 947: 944: 941: 935: 932: 929: 926: 923: 920: 917: 914: 911: 905: 902: 899: 896: 830: 827: 824: 821: 816: 813: 810: 807: 804: 801: 798: 795: 792: 5300:(conventionally displayed in italics) 3275:for a level below that, and so on to 2022:Content vs. presentation and behavior 1129: 1125: 1121: 1116: 1115: 1075: 1072: 1069: 1066: 1063: 1060: 1057: 1054: 1051: 1048: 1042: 1036: 1033: 1027: 1024: 1021: 1018: 1017: 968: 967: 910: 894: 882: 879: 876: 873: 870: 867: 864: 861: 858: 843: 788: 777: 774: 771: 768: 765: 760: 751: 747: 746: 558:is thus inferred to be equivalent to 7: 11124:. 24 December 1999. §3.2.1 Elements. 10799: 10391: 10142: 9685: 9218: 8380: 8201: 7688:in the page. Deprecated in favor of 7661: 6854: 6804: 6608:Equivalent CSS for font attributes: 6374:Can specify the font color with the 5818:; still current, redefined in HTML5. 5718:; still current, redefined in HTML5. 5425: 5366:; still current, redefined in HTML5. 5085: 4821:(URL) can link to this target via a 4752: 4746:For anchors on Knowledge (XXG), see 4698:<script>...</script> 3851: 3323: 3267:delimits the highest-level heading, 3126: 2300: 2172: 2134:<script>...</script> 2120:<script>...</script> 2102:, provide style sheets and scripts. 1993:(Strictly speaking, the most recent 1963:HTML5 instead provides a listing of 1495:, including text and other elements; 12060: 12045: 11929:"<rt>: The Ruby Text element" 11256:Mark Newhouse (27 September 2002). 10936: 10932: 10311: 10217: 10207: 10042: 9915: 9911: 9907: 9866: 9858: 9849: 9845: 9808: 9766: 9758: 9709: 9680: 9676: 9672: 9668: 9664: 9657: 9653: 9630: 9595: 9591: 9553: 9515: 9477: 9439: 9401: 9359: 9317: 9279: 9033: 9029: 8996: 8908: 8756: 8752: 8431: 8361: 8333: 8329: 8230: 8097: 8093: 8056: 8048: 8044: 8040: 7912: 7854: 7821:. Frequently used for online games. 7742: 7719: 7689: 7418: 7245:Represents the base component of a 7224: 7185: 7177: 7121: 7117: 7112: 7108: 7084: 7080: 6992: 6983: 6769:, of two or more alternative fonts. 6327: 6321: 6315: 6309: 6087: 6056:, which indicates removal/deletion. 6053: 6049: 6041: 5992: 5988: 5888: 5879: 5791: 5787: 5771: 5695: 5691: 5679: 5623: 5619: 5615: 5258:Inline definition of a single term. 4704: 4697: 4689: 4655: 4610: 4604: 4598: 4592: 4586: 4580: 4542: 4402: 4220: 4187: 4056: 4002: 3989: 3271:the next level down (sub-section), 3016:element is permitted in a document. 3013: 3009: 2798: 2750: 2695: 2643: 2632: 2624: 2616: 2615:. Because of their generic nature, 2558: 2554: 2372: 2323: 2161: 2144: 2133: 2129: 2123: 2119: 2115: 2111: 2107: 2095: 2091: 2072: 2068: 2061: 2057: 2045:. Images are contained in separate 1681: 1634: 1630: 1626: 1618: 1602: 1590: 1572: 1556: 1534: 1507: 1477: 1385: 1266: 1255:However, not all of these elements 1226: 685:have the appropriate and different 489:As HTML (before HTML5) is based on 377:and images). Each element can have 12691:"Hypertext Markup Language (HTML)" 12440:"HTML 3.2 Reference Specification" 9645:) on third party websites. Google 8092:attribute in a way similar to the 5009:"additional information" 3562:i, ii, iii ... – HTML value: 3552:I, II, III ... – HTML value: 3470:An ordered (enumerated) list. The 2650:headers which should be sent by a 2636: 2607:Can be used to specify additional 2557:element may contain any number of 2116:<style>...</style> 1261: 1212:Parts of an HTML container element 1141: 893: 790: 493:, its parsing also depends on the 361:An HTML document is composed of a 25: 12826:"Cascading Style Sheets, Level 1" 12602:WHATWG HTML5 Living Standard: 10356:Example of marquee text from the 9918:elements. It is supposed to be a 7853:Deprecated in HTML 4 in favor of 7184:). Quote elements may be nested. 6036:, indicated strike-through text ( 5798:, a foreign-language phrase, etc. 5411:), and terminal or other output ( 5235:. Recommended replacement is the 419:Similarly the W3C Recommendation 11210:"§1. Document Object Model HTML" 9906:is an attribute used within the 9641:use iframes to display content ( 8043:, this element is now used with 7931: 7630: 6993:<cite>...</cite> 6960: 6295: 5899: 5806: 5706: 5657:where possible. Equivalent CSS: 5584: 5541: 5498: 5455: 5354: 5308: 5266: 4700:around embedded script content. 4622: 4014: 3598: 2573: 2513:"description_of_style" 1684:element points the browser at a 11789:. Ars Technica. 29 October 2014 11185:"HTML Standard § Optional tags" 10924:for the HTML page. None of the 9853:is linked to a frame using the 9602: 9590:Specifies the footer part of a 9560: 9552:Specifies a body of data for a 9522: 9514:Specifies the header part of a 9446: 9408: 9200: 7179: 3572:1, 2, 3 ... – HTML value: 3542:a, b, c ... – HTML value: 3532:A, B, C ... – HTML value: 3111:placement. Using most standard 1435:), though many prefer the term 393:HTML element content categories 12174:"Objects, Images, and Applets" 11469:"4.4 Grouping content – HTML5" 10928:information will be processed. 9922:to a document that provides a 8398:. Can be checked or unchecked. 7999:attribute. This may be in any 7915:element was first proposed by 6266:, thus "tt". (Equivalent CSS: 4611:<sub>...</sub> 4543:<pre>...</pre> 2766:resource description framework 1967:features to go along with the 1229:element, would be written as: 495:Document Type Definition (DTD) 1: 12578:"HTML 5.2 W3C Recommendation" 11855: 11314: 11077:for the inevitable exception. 10959:HTML editor, in versions 1.7. 10833:(the beginning of a comment), 10316: 10222: 9944:issues, such as the blind or 9278:Contains a row of cells in a 8787: 6666:, nor does it define a unit). 5049: 4413: 3877: 3815: 3759: 3712: 3439: 3400: 3361: 3303: 3152: 3021: 2988:when the window is minimized. 2619:elements specify associative 2339: 1774:, those quotes are required. 1388:element, which represents an 304:Comparison of browser engines 12791:Sperberg-McQueen, C. Michael 12676:HTML Internet Draft 1.2: 12237:Longdesc usage - WHATWG Wiki 12215:"Creating Accessible Images" 11766:11 Obsolete features — HTML5 11443: 11431: 11419: 11378: 11326: 11274: 10878:after it, or sometimes just 10841:. Additionally, the strings 10673: 10593: 10239: 10095:"description.html" 10076:"description.html" 9987:"description.html" 9877: 9818: 9776: 9730: 9610: 9568: 9530: 9454: 9416: 9236:Identifies a table. Several 9204:. They were inspired by the 9065:The value of a form element. 9043: 8918: 8885: 8812: 8804: 8531:which produces a search bar. 8343: 8273: 8021: 7715: 7707: 7206: 7101: 7057: 6933: 6843: 6794: 6786: 6228: 6220: 6075: 6067: 5924: 5916: 5772:<em>...</em> 5224: 5144: 4541:for other HTML elements, in 4504: 4438: 4430: 4350: 4116: 4075: 3840: 3832: 2808: 2406: 2398: 1888: 1861:of the 1990s, developers of 472:element, even if the string 12563: 12486: 12335:. World Wide Web Consortium 11839:HTML 5.2 W3C Recommendation 11837: 11604:"ServerWriter -- /Provider" 10862:<!--Xbegin<!--Y--> 10823:, depending on the doctype. 10740: 10662:Microsoft Internet Explorer 10477: 10333: 10325: 10277: 10267: 10231: 10176: 10166: 9936:was designed to be used by 9492: 9484: 9374: 9366: 9336: 9328: 9294: 9286: 9256: 9248: 9195: 9182: 9136: 9006: 8796: 8371: 8299:s for use in form elements. 8244: 8066: 8039:Originally introduced with 7973: 7940: 7895:7 and below render it as a 7752: 7699: 7526: 7518: 7472:or text. (Equivalent CSS: 7428: 7344:Semantic annotations for a 6969: 6875: 6778: 6726:"Times New Roman" 6304: 6212: 6145: 6086:, which instead deprecated 6010: 5908: 5815: 5745:where possible. Equivalent 5715: 5593: 5550: 5507: 5464: 5363: 5317: 5275: 5058: 4714: 4631: 4585: 4537:). Whereas browsers ignore 4422: 4317: 4164: 4156: 4067: 4023: 3995:Uniform Resource Identifier 3886: 3824: 3768: 3721: 3652:; or in a CSS declaration: 3607: 3529:with one of the following: 3497:; or in a CSS declaration: 3448: 3409: 3370: 3348:A description list (a.k.a. 3312: 3161: 3030: 2947: 2841: 2775: 2582: 2561:elements. This element has 2390: 2348: 2289: 2271: 2249: 2231: 2208: 2169:Document structure elements 2145:<div style="..."> 1637:, for which the syntax is: 50:OpenType § Color fonts 12990: 12937:HTML 4.01 (Dec 24, 1999): 12739:Raggett, Dave (May 1996). 11844:"§4.5.6. The cite element" 11302: 11286: 11258:"CSS Design: Taming Lists" 10620: 10504: 10414: 10358:first Knowledge (XXG) edit 10349:This is the new WikiPedia! 10285: 10184: 9621: 9476:Specifies a caption for a 9101: 9072: 8967: 8944:attribute. Can also have: 8849:, but removed in HTML 5.2. 8846: 8556:, so an underlying secure 8306: 8184: 8173: 8136: 8107: 7828: 7811: 7789: 7614: 7588: 7555: 7517:Both were proposed in the 7388: 7355: 7322: 7289: 7256: 7154: 7021: 6904: 6822: 6153: 6083: 5998: 5994: 5932: 5871: 5232: 4745: 4666: 4597: 4579: 4471: 4442: 4379: 4288: 4259: 4230: 4197: 4138: 4083: 3972: 3950: 3921: 3908: 3341: 2600: 1982:. All four are invalid in 47: 40: 29: 12467:"HTML 4.01 Specification" 12073:Fahrner Image Replacement 11862:"§4.5.6 The cite element" 11499:"Lists in HTML documents" 11477:World Wide Web Consortium 11455: 10856:cannot appear at the end. 10320:(described as obsolete); 8907:A legend (caption) for a 8757:<isindex /> 8753:<isindex /> 8504:one-line text input field 7639:This section needs to be 7143:Produces text that looks 6744:'Times New Roman' 6326: 6320: 3988: 2757:element, with a value of 2155:Event-handling attributes 1454:There are three kinds of 299:Document markup languages 12157:"Are frames accessible?" 10859:As a result, the markup 10804:<!-- A Comment --> 10052: 10002: 9963: 9867:<iframe /> 9859:<iframe /> 9846:<object /> 9438:Specifies a column in a 8332:, which can then have a 7962:Specifies a client-side 6314: 6313:for marking user input, 6308: 6040:) and was equivalent to 5371:Computer phrase elements 5122:"abbreviation" 5032:value is displayed in a 4819:Uniform Resource Locator 4690:<script /> 4654: 4609: 4603: 4591: 4055: 3743:A list item in ordered ( 2908:directives of the form, 2130:<script /> 2112:<script /> 2073:<object /> 2034:style sheets. A default 2005:, but also includes the 1850:and subsequently by the 1818: 1786: 1695: 1639: 1413:"abbreviation" 1398: 1337: 1271: 1231: 12954:elements and attributes 11813:HTML 4.01 Specification 11744:, Developers.whatwg.org 11722:, Developers.whatwg.org 11700:, Developers.whatwg.org 11678:, Developers.whatwg.org 11656:, Developers.whatwg.org 11239:HTML 4.01 Specification 11140:HTML 4.01 Specification 11118:HTML 4.01 Specification 10882:, depending on browser. 10628:photosensitive epilepsy 10444:photosensitive epilepsy 9912:<frame /> 9809:<frame /> 9767:<frame /> 9710:<frame /> 9198:and the later RFC 1942 8057:<param /> 7932:HTML Internet Draft 1.2 7919:and implemented in the 7606:An optional word break. 6961:HTML Internet Draft 1.2 6296:HTML Internet Draft 1.2 6118:text). Equivalent CSS: 5962:text). Equivalent CSS: 5958:, decreased font size ( 5900:HTML Internet Draft 1.2 5807:HTML Internet Draft 1.2 5707:HTML Internet Draft 1.2 5614:, however, re-includes 5610:. The current draft of 5585:HTML Internet Draft 1.2 5542:HTML Internet Draft 1.2 5499:HTML Internet Draft 1.2 5456:HTML Internet Draft 1.2 5355:HTML Internet Draft 1.2 5309:HTML Internet Draft 1.2 5267:HTML Internet Draft 1.2 4791:(destination) end of a 4623:HTML Internet Draft 1.2 4015:HTML Internet Draft 1.2 3599:HTML Internet Draft 1.2 2694:In the general form, a 2574:HTML Internet Draft 1.2 2108:<style /> 405:HTML 4.01 Specification 12742:HTML Tables (RFC 1942) 12612:"HTML Living Standard" 12481:(HTML 4.01 superseded 10373: 10353: 9624:Frame (World Wide Web) 9028:Identifies a group of 8940:A meter which needs a 8775:keywords separated by 8761: 8558:communication protocol 5845:text. Equivalent CSS: 5183:element, but marks an 4001: 3038:Document body elements 2751:<meta /> 2696:<meta /> 2644:<meta /> 2625:<meta /> 2617:<meta /> 2559:<link /> 2486:"stylesheet" 2297:Document head elements 2274:document body elements 2234:document head elements 2106:In the document head, 2028:separation of concerns 1984:HTML 4.01 Transitional 1704:"stylesheet" 1682:<link /> 1654:"stylesheet" 1635:<link /> 1204: 486: 452: 417: 412:Elements are not tags. 394: 12139:, 1997.webhistory.org 11893:"HTML <rb> Tag" 11136:"§3 On SGML and HTML" 11114:"§3 On SGML and HTML" 11020:HTML element examples 10341:Non-standard elements 10067:"Hello.jpg" 10043:<img /> 9978:"Hello.jpg" 9908:<img /> 9865:attribute inside the 9857:attribute inside the 9765:attribute inside the 8995:Creates an item in a 8839:A key pair generator. 8805:HTML 4.0 Transitional 7913:<img /> 7876:in the document. The 7708:HTML 4.0 Transitional 7087:. Typically rendered 6851:Other inline elements 6787:HTML 4.0 Transitional 6221:HTML 4.0 Transitional 6180:Strike-through text ( 6114:Increased font size ( 6068:HTML 4.0 Transitional 5917:HTML 4.0 Transitional 4962:"#contents" 4531:non-proportional font 4431:HTML 4.0 Transitional 4030:for more information. 4026:; still current. See 3981:block level quotation 3833:HTML 4.0 Transitional 2646:elements can specify 2399:HTML 4.0 Transitional 2069:<img /> 1812:In the XML (and thus 1710:"fancy.css" 1663:"fancy.css" 1631:<img /> 1205: 637:Document Object Model 442:, in certain cases). 392: 190:Document Object Model 36:Help:HTML in wikitext 12909:"CSS Current Status" 12705:HTML 3.0 Drafts: 12627:Also available as a 12614:. One-page Version. 12610:, ed. (2018-07-25). 12358:html.spec.whatwg.org 12285:HTML Living Standard 11857:HTML Living Standard 10940:be recognized, e.g. 10136:, but deprecated in 9708:Contains the set of 8014:, a sound file, etc. 7903:attribute is given. 6868:A forced line break. 6797:. Not part of HTML5. 6211:was standardized in 6184:), (Equivalent CSS: 4888:"contents" 4829:attribute, so using 4441:; then redefined in 3848:Other block elements 3301:Headings existed in 2882:"text/css" 2495:"text/css" 2276:for child elements.) 2236:for child elements.) 1974:The first Standard ( 1827:"checkbox" 1716:"text/css" 1672:"text/css" 1627:<hr /> 1619:<br /> 1544:some amount of text 733: 458:Certain tags can be 422:HTML 5.1 2nd Edition 195:Browser Object Model 12887:"CSS Snapshot 2017" 12867:. Revised version. 12828:. Revised version. 12633:Developer's Edition 12580:. Revised version. 12549:. Revised version. 12526:. Revised version. 12501:. Revised version. 12317:. 24 February 2023. 11164:. 24 December 1999. 6585:"Courier" 6440:"#114499" 5796:binary species name 4823:fragment identifier 4798:With the attribute 4213:</figcaption> 3966:</blockquote> 2635:), despite being a 2147:) for inclusion of 1833:"checked" 1335:of a closing tag). 168:Character encodings 12863:(12 April 2016) . 12195:"InState Longdesc" 12041:2012-11-02 at the 11983:"<template>" 11819:. 24 December 1999 11571:HTML 4 for dummies 10646:can also be added. 10462:Netscape Navigator 7622:Images and objects 7579:Gregorian calendar 7214: 6605:with Courier font. 5341: 4779:can be either the 4703: 4188:<figcaption> 4028:blockquote element 3975:Blockquote element 3586:, and options for 2999:Web search engines 2698:element specifies 2565:, but no contents. 2471:, using the form, 2337:) is mentioned in 2330:, but no contents. 1887:-compatible form, 1571:An example is the 1200: 1132: 1078: 974: 971: 960: 956: 909: 889: 839: 836: 784: 757: 395: 12629:Multipage Version 12571:W3C HTML 5.2: 12392:(November 1995). 12240:, Wiki.whatwg.org 12117:, Bugs.webkit.org 11582:978-0-7645-8917-1 10422:ANSI escape codes 10218:<plaintext> 10208:<plaintext> 10124:Historic elements 9946:visually impaired 9797:</noframes> 9698:</frameset> 9671:, but not both a 9390:</colgroup> 9158:</textarea> 9088:</progress> 9022:</optgroup> 8600:telephone numbers 8322:</fieldset> 8289:</datalist> 8192:form of scripts ( 7893:Internet Explorer 7660: 7659: 7542:</template> 7212: 6765:– CSS supports a 6460:hexadecimal color 6403:"green" 6325:for source code, 6262:), also known as 5961: 5339: 5227:; still current, 4893:Table of contents 4701: 4487:</noscript> 2761:, from the DC or 2688:that has a value 2318:for all relative 1842:Element standards 1521:Raw text elements 1199: 1172: 1167: 1164: 1137: 1110: 1083: 1047: 1041: 1032: 1012: 1000: 979: 957: 940: 856: 854: 834: 763: 761: 756: 425:explicitly says: 398:Elements vs. tags 340: 339: 16:(Redirected from 12981: 12952:(Oct 28, 2014): 12951: 12950: 12923: 12921: 12920: 12901: 12899: 12898: 12881:CSS 3 and 4: 12878: 12876: 12875: 12844: 12839: 12837: 12836: 12813: 12808: 12806: 12805: 12778: 12773: 12771: 12770: 12758: 12756:10.17487/RFC1942 12734: 12733:HTML Tables: 12725: 12723: 12722: 12706: 12700: 12698: 12697: 12683:Berners-Lee, Tim 12677: 12668: 12666: 12665: 12655:Berners-Lee, Tim 12649: 12625: 12623: 12622: 12603: 12591: 12589: 12588: 12572: 12560: 12558: 12557: 12537: 12535: 12534: 12518: 12513: 12511: 12510: 12494: 12480: 12478: 12477: 12458: 12453: 12451: 12450: 12431: 12426: 12424: 12423: 12411: 12409:10.17487/RFC1866 12386:Berners-Lee, Tim 12381: 12362: 12361: 12350: 12344: 12343: 12341: 12340: 12328: 12319: 12318: 12307: 12301: 12300: 12298: 12296: 12277: 12268: 12267: 12265: 12264: 12254: 12248: 12247: 12246: 12245: 12232: 12226: 12225: 12223: 12222: 12211: 12205: 12204: 12202: 12201: 12191: 12185: 12184: 12182: 12181: 12170: 12164: 12163: 12153: 12147: 12146: 12145: 12144: 12131: 12125: 12124: 12123: 12122: 12109: 12103: 12102: 12100: 12099: 12082: 12076: 12069: 12063: 12062: 12054: 12048: 12047: 12036:Jennifer Kyrnin 12033: 12027: 12026: 12015: 12009: 12008: 11997: 11991: 11990: 11979: 11973: 11972: 11961: 11955: 11954: 11943: 11937: 11936: 11925: 11919: 11918: 11907: 11901: 11900: 11889: 11883: 11882: 11871: 11865: 11853: 11847: 11835: 11829: 11828: 11826: 11824: 11805: 11799: 11798: 11796: 11794: 11783: 11777: 11776: 11775: 11774: 11761: 11752: 11751: 11750: 11749: 11736: 11730: 11729: 11728: 11727: 11714: 11708: 11707: 11706: 11705: 11692: 11686: 11685: 11684: 11683: 11670: 11664: 11663: 11662: 11661: 11648: 11642: 11636: 11630: 11629: 11618: 11612: 11611: 11600: 11594: 11593: 11591: 11589: 11574: 11564: 11558: 11557: 11556: 11555: 11542: 11536: 11534: 11521: 11515: 11514: 11512: 11510: 11495: 11489: 11488: 11486: 11484: 11465: 11459: 11453: 11447: 11441: 11435: 11429: 11423: 11417: 11411: 11410: 11408: 11407: 11388: 11382: 11376: 11370: 11369: 11354: 11348: 11347: 11340:"HTML & CSS" 11336: 11330: 11324: 11318: 11312: 11306: 11300: 11294: 11293:in the acronym.) 11284: 11278: 11272: 11266: 11265: 11253: 11247: 11246: 11231: 11222: 11221: 11206: 11200: 11199: 11197: 11195: 11181: 11166: 11165: 11154: 11148: 11147: 11132: 11126: 11125: 11110: 11091: 11084: 11078: 11076: 11075: 11072: 11069: 11063: 11057: 11054: 11048: 11045: 11039: 11036: 11001: 11000: 10997: 10994: 10991: 10988: 10985: 10982: 10979: 10976: 10973: 10970: 10967: 10951: 10950: 10947: 10944: 10938: 10934: 10927: 10919: 10901: 10900: 10897: 10893: 10890: 10881: 10877: 10876: 10871: 10870: 10865: 10863: 10855: 10853: 10848: 10844: 10840: 10836: 10832: 10830: 10806: 10805: 10790: 10789: 10786: 10783: 10778: 10777: 10774: 10771: 10763: 10757:</noembed> 10730: 10729: 10726: 10723: 10717: 10716: 10713: 10710: 10707: 10704: 10696: 10659: 10658: 10655: 10652: 10616: 10610:</marquee> 10579: 10578: 10575: 10572: 10500: 10459: 10458: 10455: 10452: 10441: 10440: 10437: 10434: 10431: 10428: 10410: 10381: 10371: 10361: 10313: 10304: 10262: 10219: 10209: 10203: 10161: 10155:</listing> 10118: 10115: 10112: 10108: 10105: 10102: 10099: 10096: 10093: 10090: 10087: 10084: 10080: 10077: 10074: 10071: 10068: 10065: 10062: 10059: 10056: 10044: 10031: 10028: 10025: 10021: 10018: 10015: 10012: 10009: 10006: 9999: 9998:description.html 9991: 9988: 9985: 9982: 9979: 9976: 9973: 9970: 9967: 9955: 9951: 9935: 9924:long description 9917: 9913: 9909: 9904: 9891: 9868: 9864: 9860: 9856: 9851: 9847: 9840: 9810: 9803: 9768: 9764: 9760: 9759:<frameset> 9753: 9719: 9715: 9711: 9704: 9682: 9678: 9677:<frameset> 9674: 9670: 9669:<frameset> 9666: 9659: 9655: 9632: 9613:; still current. 9597: 9593: 9586: 9571:; still current. 9555: 9548: 9533:; still current. 9517: 9510: 9495:; still current. 9483:Proposed in the 9479: 9472: 9470:</caption> 9457:; still current. 9441: 9434: 9419:; still current. 9403: 9392: 9377:; still current. 9365:Proposed in the 9361: 9354: 9339:; still current. 9327:Proposed in the 9319: 9312: 9297:; still current. 9285:Proposed in the 9281: 9274: 9259:; still current. 9247:Proposed in the 9243: 9232: 9206:CALS Table Model 9185:; still current. 9171: 9167: 9160: 9139:; still current. 9125: 9090: 9061: 9046:; still current. 9035: 9031: 9024: 9009:; still current. 8998: 8991: 8959: 8955: 8951: 8947: 8943: 8936: 8921:; still current. 8910: 8909:<fieldset> 8903: 8888:; still current. 8877: 8870: 8835: 8784: 8766: 8758: 8754: 8748: 8728: 8686: 8670:A time selector. 8657:A date selector. 8639: 8618: 8597: 8547: 8530: 8513: 8509: 8471: 8433: 8374:; still current. 8363: 8357: 8346:; still current. 8335: 8331: 8330:<fieldset> 8324: 8298: 8291: 8276:; still current. 8262: 8247:; still current. 8236: 8232: 8221: 8165: 8158:Adds a playable 8154: 8125: 8099: 8095: 8091: 8084: 8069:; still current. 8058: 8050: 8046: 8042: 8035: 8024:; still current. 7998: 7991: 7976:; still current. 7958: 7943:; still current. 7928: 7914: 7902: 7890: 7884: 7879: 7868: 7856: 7846: 7807: 7781: 7770: 7755:; still current. 7744: 7733: 7721: 7691: 7680: 7655: 7652: 7646: 7634: 7633: 7626: 7602: 7573: 7544: 7529:; still current. 7514:, respectively.) 7513: 7512: 7509: 7506: 7503: 7500: 7497: 7492: 7491: 7488: 7485: 7482: 7479: 7476: 7462: 7446: 7431:; still current. 7420: 7406: 7373: 7340: 7307: 7274: 7241: 7226: 7222: 7218: 7209:; still current. 7194: 7187: 7183: 7172: 7146: 7139: 7123: 7119: 7114: 7110: 7104:; still current. 7086: 7082: 7075: 7060:; still current. 7039: 7010: 6994: 6985: 6972:; still current. 6958:CITE existed in 6951: 6936:; still current. 6922: 6893: 6878:; still current. 6864: 6846:; still current. 6818: 6764: 6763: 6760: 6757: 6754: 6751: 6748: 6745: 6742: 6739: 6736: 6731: 6730: 6727: 6724: 6721: 6718: 6715: 6709: 6708: 6705: 6702: 6699: 6696: 6693: 6688: 6687: 6684: 6681: 6678: 6675: 6672: 6657: 6656: 6653: 6645: 6642: 6639: 6634: 6633: 6630: 6623: 6620: 6617: 6614: 6604: 6600: 6599: 6596: 6593: 6589: 6586: 6583: 6580: 6577: 6574: 6567: 6566: 6563: 6560: 6556: 6553: 6550: 6547: 6544: 6541: 6537: 6533: 6532: 6529: 6526: 6522: 6519: 6516: 6513: 6510: 6507: 6500: 6496: 6495: 6492: 6489: 6485: 6482: 6479: 6476: 6473: 6470: 6463: 6455: 6454: 6451: 6448: 6444: 6441: 6438: 6435: 6432: 6429: 6422: 6418: 6417: 6414: 6411: 6407: 6404: 6401: 6398: 6395: 6392: 6385: 6381: 6377: 6373: 6372: 6369: 6366: 6361: 6358: 6351: 6329: 6323: 6317: 6311: 6292: 6286: 6285: 6282: 6279: 6276: 6273: 6270: 6261: 6251: 6210: 6204: 6203: 6200: 6197: 6194: 6191: 6188: 6176: 6138: 6137: 6134: 6131: 6128: 6125: 6122: 6110: 6089: 6061: 6055: 6051: 6043: 6028: 6013:; still current. 6002: 5997:>...</ 5990: 5982: 5981: 5978: 5975: 5972: 5969: 5966: 5959: 5950: 5896: 5890: 5881: 5866:. Deprecated in 5865: 5864: 5861: 5858: 5855: 5852: 5849: 5833: 5803: 5793: 5789: 5773: 5769: 5768: 5765: 5762: 5759: 5756: 5753: 5733: 5703: 5697: 5693: 5681: 5677: 5676: 5673: 5670: 5667: 5664: 5661: 5645: 5625: 5621: 5617: 5596:; still current. 5581: 5568: 5553:; still current. 5538: 5532: 5525: 5510:; still current. 5495: 5482: 5467:; still current. 5452: 5446: 5443:A code snippet ( 5439: 5422: 5421: 5418: 5415: 5410: 5409: 5406: 5403: 5398: 5397: 5394: 5391: 5386: 5385: 5382: 5379: 5351: 5344:aural user agent 5335: 5320:; still current. 5305: 5293: 5278:; still current. 5270:, and was fully 5263: 5254: 5238: 5217: 5216: 5213: 5210: 5206: 5203: 5200: 5197: 5194: 5191: 5182: 5181: 5178: 5175: 5167: 5161:</acronym> 5147:; still current. 5137: 5136: 5133: 5130: 5126: 5123: 5120: 5117: 5114: 5111: 5099: 5077: 5073: 5046: 5031: 5024: 5023: 5020: 5017: 5013: 5010: 5007: 5004: 5001: 4998: 4995: 4992: 4989: 4984: 4977: 4976: 4973: 4970: 4966: 4963: 4960: 4957: 4954: 4951: 4943: 4942: 4939: 4936: 4932: 4929: 4926: 4923: 4920: 4917: 4909: 4908: 4905: 4902: 4899: 4896: 4892: 4889: 4886: 4883: 4880: 4877: 4874: 4871: 4866: 4859: 4858: 4855: 4852: 4848: 4845: 4842: 4839: 4836: 4833: 4828: 4813: 4809: 4801: 4766: 4737: 4736: 4733: 4730: 4717:; still current. 4706: 4699: 4695: 4691: 4684: 4657: 4649: 4647:</section> 4634:; still current. 4619: 4612: 4606: 4600: 4594: 4588: 4582: 4577: 4576: 4573: 4570: 4567: 4564: 4561: 4558: 4555: 4552: 4549: 4544: 4522: 4507:; still current. 4489: 4460: 4410: 4404: 4397: 4368: 4353:; still current. 4335: 4320:; still current. 4302: 4277: 4248: 4222: 4215: 4189: 4182: 4167:; still current. 4155:Proposed in the 4134: 4119:; still current. 4101: 4058: 4050: 4011: 4004: 3991: 3986: 3968: 3939: 3904: 3902:</article> 3889:; still current. 3874: 3865: 3863:</address> 3812: 3806: 3805: 3802: 3799: 3791: 3771:; still current. 3756: 3750: 3747:) or unordered ( 3746: 3739: 3724:; still current. 3709: 3703: 3695: 3691: 3687: 3683: 3677: 3676: 3675: 3672: 3669: 3666: 3663: 3660: 3657: 3651: 3650: 3649: 3646: 3643: 3640: 3637: 3634: 3625: 3610:; still current. 3595: 3585: 3579: 3575: 3569: 3565: 3559: 3555: 3549: 3545: 3539: 3535: 3528: 3522: 3521: 3520: 3517: 3514: 3511: 3508: 3505: 3502: 3496: 3495: 3494: 3491: 3488: 3485: 3482: 3479: 3473: 3466: 3451:; still current. 3436: 3427: 3412:; still current. 3397: 3388: 3373:; still current. 3358: 3350:association list 3337: 3315:; still current. 3285: 3278: 3274: 3270: 3266: 3259: 3243: 3227: 3211: 3195: 3179: 3164:; still current. 3149: 3140: 3033:; still current. 3015: 3011: 2965: 2950:; still current. 2940: 2939: 2936: 2933: 2930: 2927: 2924: 2921: 2918: 2915: 2912: 2907: 2899: 2898: 2895: 2892: 2889: 2886: 2883: 2880: 2877: 2874: 2871: 2859: 2844:; still current. 2833: 2826: 2811:; still current. 2800: 2793: 2778:; still current. 2760: 2756: 2752: 2748: 2747: 2744: 2741: 2738: 2735: 2732: 2729: 2726: 2723: 2720: 2717: 2714: 2709: 2705: 2701: 2697: 2691: 2687: 2683: 2682: 2679: 2676: 2673: 2670: 2667: 2664: 2661: 2658: 2645: 2634: 2626: 2618: 2596: 2585:; still current. 2570: 2560: 2556: 2552: 2551: 2548: 2545: 2542: 2539: 2538:"next" 2536: 2533: 2530: 2527: 2518: 2517: 2514: 2511: 2508: 2505: 2502: 2499: 2496: 2493: 2490: 2487: 2484: 2481: 2478: 2475: 2455: 2439: 2438: 2435: 2432: 2425: 2374: 2367: 2351:; still current. 2336: 2325: 2321: 2310: 2292:; still current. 2277: 2266: 2252:; still current. 2237: 2226: 2211:; still current. 2186: 2163: 2146: 2142: 2135: 2131: 2125: 2121: 2117: 2113: 2109: 2097: 2093: 2075:elements. (With 2074: 2070: 2063: 2059: 2003:XHTML 1.0 Strict 1988:HTML 4.01 Strict 1837: 1834: 1831: 1828: 1825: 1822: 1808: 1805: 1802: 1799: 1796: 1793: 1790: 1784:for checkboxes: 1783: 1769: 1758: 1747: 1720: 1717: 1714: 1711: 1708: 1705: 1702: 1699: 1689:spaced trailing 1683: 1676: 1673: 1670: 1667: 1664: 1661: 1658: 1655: 1652: 1649: 1646: 1643: 1636: 1632: 1628: 1620: 1608: 1596: 1587: 1586: 1574: 1562: 1540: 1523: 1522: 1513: 1483: 1466: 1465: 1450:Types of element 1427: 1424: 1421: 1417: 1414: 1411: 1408: 1405: 1402: 1395: 1387: 1377: 1374: 1371: 1367: 1364: 1361: 1357: 1354: 1351: 1347: 1344: 1341: 1330: 1322: 1311: 1308: 1305: 1301: 1298: 1295: 1291: 1288: 1285: 1281: 1278: 1275: 1268: 1251: 1248: 1245: 1241: 1238: 1235: 1228: 1209: 1207: 1206: 1201: 1198: 1197: 1173: 1168: 1166: 1165: 1163: 1152: 1138: 1133: 1124: 1113: 1111: 1109: 1108: 1084: 1079: 1015: 1013: 1011: 1010: 980: 975: 973: 972: 964: 959: 958: 908: 890: 885: 851: 850: 849: 838: 837: 835: 833: 819: 785: 780: 759: 758: 742: 740: 738: 736: 714: 710: 708: 705: 702: 699: 696: 679: 675: 668: 667: 664: 661: 658: 645: 602: 600: 597: 594: 591: 588: 584: 581: 578: 575: 572: 568: 565: 562: 557: 555: 552: 549: 545: 542: 539: 535: 532: 529: 524: 523: 520: 517: 512: 511: 508: 505: 484: 450: 440:might be implied 436:might be implied 332: 325: 318: 283:Rendering engine 173:named characters 57: 43:Nitrosyl bromide 21: 18:Description list 12989: 12988: 12984: 12983: 12982: 12980: 12979: 12978: 12959: 12958: 12948: 12947: 12934: 12929: 12918: 12916: 12907: 12896: 12894: 12884: 12873: 12871: 12861:Lie, Håkon Wium 12847: 12842: 12834: 12832: 12824:(2008-04-11) . 12818:Lie, Håkon Wium 12816: 12811: 12803: 12801: 12781: 12776: 12768: 12766: 12738: 12732: 12720: 12718: 12710: 12704: 12695: 12693: 12681: 12675: 12663: 12661: 12653: 12647: 12643: 12620: 12618: 12606: 12601: 12586: 12584: 12575: 12570: 12555: 12553: 12543: 12532: 12530: 12521: 12516: 12508: 12506: 12497: 12492: 12475: 12473: 12461: 12456: 12448: 12446: 12434: 12429: 12421: 12419: 12384: 12379: 12376: 12370: 12365: 12354:"HTML standard" 12352: 12351: 12347: 12338: 12336: 12330: 12329: 12322: 12309: 12308: 12304: 12294: 12292: 12291:. July 22, 2022 12279: 12278: 12271: 12262: 12260: 12256: 12255: 12251: 12243: 12241: 12234: 12233: 12229: 12220: 12218: 12213: 12212: 12208: 12199: 12197: 12193: 12192: 12188: 12179: 12177: 12172: 12171: 12167: 12155: 12154: 12150: 12142: 12140: 12133: 12132: 12128: 12120: 12118: 12111: 12110: 12106: 12097: 12095: 12084: 12083: 12079: 12070: 12066: 12055: 12051: 12043:Wayback Machine 12034: 12030: 12017: 12016: 12012: 11999: 11998: 11994: 11981: 11980: 11976: 11963: 11962: 11958: 11945: 11944: 11940: 11927: 11926: 11922: 11909: 11908: 11904: 11897:www.quackit.com 11891: 11890: 11886: 11873: 11872: 11868: 11854: 11850: 11836: 11832: 11822: 11820: 11807: 11806: 11802: 11792: 11790: 11785: 11784: 11780: 11772: 11770: 11763: 11762: 11755: 11747: 11745: 11738: 11737: 11733: 11725: 11723: 11716: 11715: 11711: 11703: 11701: 11694: 11693: 11689: 11681: 11679: 11672: 11671: 11667: 11659: 11657: 11650: 11649: 11645: 11637: 11633: 11620: 11619: 11615: 11602: 11601: 11597: 11587: 11585: 11583: 11566: 11565: 11561: 11553: 11551: 11544: 11543: 11539: 11533:. 5 April 2011. 11523: 11522: 11518: 11508: 11506: 11497: 11496: 11492: 11482: 11480: 11467: 11466: 11462: 11454: 11450: 11442: 11438: 11430: 11426: 11418: 11414: 11405: 11403: 11390: 11389: 11385: 11377: 11373: 11356: 11355: 11351: 11338: 11337: 11333: 11325: 11321: 11313: 11309: 11301: 11297: 11285: 11281: 11273: 11269: 11255: 11254: 11250: 11233: 11232: 11225: 11208: 11207: 11203: 11193: 11191: 11183: 11182: 11169: 11156: 11155: 11151: 11134: 11133: 11129: 11112: 11111: 11104: 11100: 11095: 11094: 11085: 11081: 11073: 11070: 11067: 11064: 11060: 11055: 11051: 11046: 11042: 11037: 11033: 11028: 11011: 10998: 10995: 10992: 10989: 10986: 10983: 10980: 10977: 10974: 10971: 10968: 10965: 10962: 10948: 10945: 10942: 10941: 10925: 10917: 10899:style="..."> 10898: 10895: 10891: 10888: 10887: 10879: 10874: 10873: 10868: 10867: 10861: 10851: 10828: 10807: 10803: 10798: 10787: 10784: 10781: 10775: 10772: 10769: 10764: 10759: 10727: 10724: 10721: 10714: 10711: 10708: 10705: 10702: 10697: 10692: 10656: 10653: 10650: 10625: 10623:Marquee element 10617: 10612: 10576: 10573: 10570: 10509: 10501: 10496: 10456: 10453: 10450: 10438: 10435: 10432: 10430:text-decoration 10429: 10426: 10419: 10411: 10406: 10383: 10375: 10367: 10363: 10355: 10352: 10351: 10350: 10343: 10305: 10300: 10263: 10258: 10204: 10199: 10162: 10157: 10130:Tim Berners-Lee 10126: 10121: 10120: 10116: 10113: 10110: 10106: 10103: 10100: 10097: 10094: 10091: 10088: 10085: 10082: 10078: 10075: 10072: 10069: 10066: 10063: 10060: 10057: 10054: 10051: 10039: 10034: 10033: 10029: 10026: 10023: 10019: 10016: 10013: 10010: 10007: 10004: 9997: 9995: 9993: 9992: 9989: 9986: 9983: 9980: 9977: 9974: 9971: 9968: 9965: 9962: 9953: 9949: 9933: 9902: 9894: 9889: 9862: 9854: 9841: 9838:</iframe> 9804: 9799: 9762: 9754: 9749: 9721:HTML attributes 9717: 9713: 9705: 9700: 9626: 9620: 9587: 9549: 9511: 9485:HTML 3.0 Drafts 9473: 9435: 9393: 9367:HTML 3.0 Drafts 9355: 9329:HTML 3.0 Drafts 9313: 9287:HTML 3.0 Drafts 9275: 9249:HTML 3.0 Drafts 9241: 9238:HTML attributes 9233: 9196:HTML 3.0 Drafts 9192: 9173:HTML attributes 9169: 9165: 9161: 9152: 9126: 9123:</select> 9117: 9091: 9062: 9059:</output> 9025: 8992: 8989:</option> 8983: 8957: 8953: 8949: 8945: 8941: 8937: 8904: 8901:</legend> 8875: 8871: 8862: 8836: 8831: 8829:</keygen> 8813:HTML 4.0 Strict 8782: 8773:percent-encoded 8749: 8744: 8726: 8723: 8722: 8713:A color picker. 8710: 8709: 8697: 8696: 8684: 8683:A variation of 8680: 8679: 8667: 8666: 8654: 8653: 8637: 8636:A variation of 8633: 8632: 8621:email addresses 8616: 8615:A variation of 8612: 8611: 8595: 8594:A variation of 8591: 8590: 8574: 8573: 8545: 8544:A variation of 8541: 8540: 8528: 8527:A variation of 8524: 8523: 8511: 8507: 8499: 8498: 8482: 8481: 8469: 8461: 8460: 8444: 8443: 8427: 8426: 8408: 8407: 8389: 8388: 8358: 8325: 8296: 8292: 8263: 8260:</button> 8234: 8222: 8213: 8189: 8183: 8163: 8155: 8126: 8089: 8085: 8082:</source> 8053:HTML attributes 8036: 7996: 7992: 7989:</object> 7959: 7926: 7917:Marc Andreessen 7900: 7888: 7882: 7877: 7869: 7847: 7816: 7808: 7805:</canvas> 7779: 7771: 7734: 7716:HTML 4.0 Strict 7681: 7676: 7674:</applet> 7656: 7650: 7647: 7644: 7635: 7631: 7624: 7603: 7574: 7545: 7519:HTML 3.0 Drafts 7510: 7507: 7504: 7501: 7498: 7495: 7489: 7486: 7483: 7480: 7477: 7474: 7471: 7463: 7447: 7407: 7404:</script> 7379:ruby annotation 7374: 7346:ruby annotation 7341: 7313:ruby annotation 7308: 7280:ruby annotation 7275: 7247:ruby annotation 7242: 7220: 7216: 7192: 7173: 7144: 7140: 7094: 7076: 7050: 7040: 7011: 6952: 6923: 6894: 6865: 6853: 6827: 6819: 6803: 6795:HTML 4.0 Strict 6761: 6758: 6755: 6752: 6749: 6746: 6743: 6740: 6737: 6734: 6732:corresponds to 6728: 6725: 6722: 6719: 6716: 6713: 6706: 6703: 6700: 6697: 6694: 6691: 6689:corresponds to 6685: 6683:"red" 6682: 6679: 6676: 6673: 6670: 6665: 6661: 6654: 6652: 6649: 6646: 6643: 6640: 6637: 6635:corresponds to 6631: 6628: 6624: 6621: 6618: 6615: 6612: 6602: 6597: 6594: 6591: 6587: 6584: 6581: 6578: 6575: 6572: 6564: 6561: 6558: 6554: 6551: 6548: 6545: 6542: 6539: 6535: 6530: 6527: 6524: 6520: 6517: 6514: 6511: 6508: 6505: 6498: 6493: 6490: 6487: 6483: 6480: 6477: 6474: 6471: 6468: 6457: 6452: 6449: 6446: 6442: 6439: 6436: 6433: 6430: 6427: 6420: 6415: 6412: 6409: 6405: 6402: 6399: 6396: 6393: 6390: 6383: 6379: 6375: 6370: 6367: 6364: 6362: 6359: 6356: 6352: 6347: 6290: 6283: 6280: 6277: 6274: 6271: 6268: 6260:typewriter-like 6259: 6252: 6247: 6229:HTML 4.0 Strict 6208: 6201: 6198: 6195: 6192: 6190:text-decoration 6189: 6186: 6177: 6172: 6170:</strike> 6135: 6132: 6129: 6126: 6123: 6120: 6117: 6111: 6106: 6076:HTML 4.0 Strict 6059: 6029: 5979: 5976: 5973: 5970: 5967: 5964: 5951: 5925:HTML 4.0 Strict 5894: 5862: 5859: 5856: 5853: 5851:text-decoration 5850: 5847: 5834: 5801: 5766: 5763: 5760: 5757: 5754: 5751: 5734: 5701: 5674: 5671: 5668: 5665: 5662: 5659: 5646: 5603: 5579: 5575: 5569: 5536: 5530: 5526: 5493: 5489: 5483: 5450: 5444: 5440: 5419: 5416: 5413: 5407: 5404: 5401: 5399:), user input ( 5395: 5392: 5389: 5383: 5380: 5377: 5373: 5349: 5336: 5333:</strong> 5303: 5294: 5261: 5255: 5236: 5214: 5211: 5208: 5204: 5201: 5198: 5195: 5192: 5189: 5179: 5176: 5173: 5171:Similar to the 5168: 5163: 5134: 5131: 5128: 5124: 5121: 5118: 5115: 5112: 5109: 5100: 5084: 5075: 5071: 5068: 5066:Phrase elements 5044: 5029: 5021: 5018: 5015: 5011: 5008: 5005: 5002: 5000:"URL" 4999: 4996: 4993: 4990: 4987: 4982: 4974: 4971: 4968: 4967:contents, above 4964: 4961: 4958: 4955: 4952: 4949: 4940: 4937: 4934: 4930: 4927: 4924: 4921: 4918: 4915: 4906: 4903: 4900: 4897: 4894: 4890: 4887: 4884: 4881: 4878: 4875: 4872: 4869: 4864: 4856: 4853: 4850: 4846: 4844:"foo" 4843: 4840: 4837: 4834: 4831: 4826: 4815:HTML attributes 4811: 4807: 4799: 4767: 4751: 4744: 4734: 4731: 4728: 4724: 4722:Inline elements 4693: 4685: 4682:</script> 4650: 4617: 4574: 4571: 4568: 4565: 4562: 4559: 4556: 4553: 4550: 4547: 4523: 4490: 4461: 4439:HTML 4.0 Strict 4408: 4398: 4369: 4336: 4303: 4278: 4275:</header> 4249: 4246:</footer> 4216: 4183: 4180:</figure> 4157:HTML 3.0 Drafts 4143: 4135: 4102: 4051: 4046: 4044:</center> 4009: 3984: 3977: 3969: 3940: 3913: 3911:Article element 3905: 3872: 3866: 3850: 3841:HTML 4.0 Strict 3810: 3803: 3800: 3797: 3792: 3787: 3754: 3748: 3744: 3740: 3707: 3701: 3693: 3689: 3688:(the default), 3685: 3682: 3679: 3673: 3670: 3667: 3664: 3662:list-style-type 3661: 3658: 3655: 3653: 3647: 3645:"foo" 3644: 3641: 3638: 3635: 3632: 3630: 3626: 3593: 3583: 3577: 3573: 3567: 3563: 3557: 3553: 3547: 3543: 3537: 3533: 3527: 3524: 3518: 3515: 3512: 3509: 3507:list-style-type 3506: 3503: 3500: 3498: 3492: 3490:"foo" 3489: 3486: 3483: 3480: 3477: 3475: 3471: 3467: 3434: 3428: 3395: 3389: 3356: 3347: 3338: 3322: 3280: 3276: 3272: 3268: 3264: 3260: 3244: 3228: 3212: 3196: 3180: 3147: 3141: 3125: 3067: 3040: 2966: 2937: 2934: 2931: 2928: 2925: 2922: 2919: 2916: 2913: 2910: 2905: 2896: 2893: 2890: 2887: 2884: 2881: 2878: 2875: 2872: 2869: 2860: 2831: 2827: 2824:</script> 2794: 2791:</object> 2758: 2754: 2745: 2742: 2739: 2736: 2734:"bar" 2733: 2730: 2727: 2725:"foo" 2724: 2721: 2718: 2715: 2712: 2707: 2703: 2702:and associated 2699: 2689: 2685: 2680: 2678:"bar" 2677: 2674: 2671: 2669:"foo" 2668: 2665: 2662: 2659: 2656: 2621:key-value pairs 2613:HTML attributes 2605: 2597: 2568: 2563:HTML attributes 2553:. A document's 2549: 2547:"url" 2546: 2543: 2540: 2537: 2534: 2531: 2528: 2525: 2515: 2512: 2509: 2506: 2504:"url" 2503: 2500: 2497: 2494: 2491: 2488: 2485: 2482: 2479: 2476: 2473: 2456: 2436: 2433: 2430: 2426: 2421: 2407:HTML 4.0 Strict 2368: 2363: 2334: 2328:HTML attributes 2319: 2311: 2299: 2267: 2227: 2187: 2171: 2140: 2100:HTML attributes 2098:, with related 2024: 1905: 1893:eXtensible HTML 1844: 1839: 1838: 1835: 1832: 1829: 1826: 1823: 1820: 1810: 1809: 1806: 1803: 1800: 1797: 1794: 1791: 1788: 1781: 1767: 1763: 1760: 1756: 1752: 1749: 1746: 1742: 1739: 1731:HTML attributes 1727: 1722: 1721: 1718: 1715: 1712: 1709: 1706: 1703: 1700: 1697: 1678: 1677: 1674: 1671: 1668: 1665: 1662: 1659: 1656: 1653: 1650: 1647: 1644: 1641: 1623:hard line-break 1606: 1594: 1584: 1583: 1560: 1538: 1520: 1519: 1511: 1491:some amount of 1486:HTML attributes 1481: 1464:Normal elements 1463: 1462: 1452: 1429: 1428: 1425: 1422: 1419: 1415: 1412: 1409: 1406: 1403: 1400: 1393: 1382:HTML attributes 1379: 1378: 1375: 1372: 1369: 1365: 1362: 1359: 1355: 1352: 1349: 1345: 1342: 1339: 1328: 1320: 1313: 1312: 1309: 1306: 1303: 1299: 1296: 1293: 1289: 1286: 1283: 1279: 1276: 1273: 1253: 1252: 1249: 1246: 1243: 1239: 1236: 1233: 1215: 1214: 1213: 1210: 1153: 1142: 853: 842: 820: 791: 743: 739: 731: 730: 726: 721: 712: 706: 703: 700: 697: 694: 683:inline elements 677: 673: 665: 662: 659: 656: 648: 643: 617: 598: 595: 592: 589: 586: 582: 579: 576: 573: 570: 566: 563: 560: 553: 550: 547: 543: 540: 537: 533: 530: 527: 521: 518: 515: 509: 506: 503: 488: 485: 480: 475: 471: 467: 463: 451: 446: 433: 400: 387: 379:HTML attributes 365:of simple HTML 352:Tim Berners-Lee 336: 53: 46: 39: 28: 23: 22: 15: 12: 11: 5: 12987: 12985: 12977: 12976: 12971: 12961: 12960: 12957: 12956: 12945: 12933: 12932:External links 12930: 12928: 12927: 12905: 12882: 12879: 12845: 12840: 12814: 12809: 12779: 12774: 12736: 12729: 12714:(1995-03-24). 12708: 12701: 12679: 12672: 12657:(1992-11-03). 12651: 12648:HTML Tags: 12642: 12639: 12638: 12637: 12604: 12599: 12573: 12568: 12541: 12519: 12517:XHTML 1.1: 12514: 12495: 12493:XHTML 1.0: 12490: 12459: 12457:HTML 4.01: 12454: 12438:(1997-01-14). 12432: 12427: 12382: 12375: 12374:HTML standards 12372: 12371: 12369: 12366: 12364: 12363: 12345: 12320: 12302: 12269: 12249: 12227: 12206: 12186: 12165: 12148: 12126: 12104: 12077: 12064: 12049: 12028: 12010: 12001:"<time>" 11992: 11974: 11965:"<ruby>" 11956: 11938: 11920: 11902: 11884: 11875:"<data>" 11866: 11848: 11830: 11800: 11778: 11753: 11731: 11709: 11687: 11665: 11643: 11631: 11613: 11595: 11581: 11559: 11537: 11516: 11490: 11460: 11448: 11436: 11424: 11412: 11383: 11371: 11368:. 7 June 2011. 11349: 11331: 11319: 11307: 11295: 11279: 11267: 11248: 11223: 11201: 11167: 11149: 11127: 11101: 11099: 11096: 11093: 11092: 11079: 11058: 11049: 11040: 11030: 11029: 11027: 11024: 11023: 11022: 11017: 11015:HTML attribute 11010: 11007: 11006: 11005: 11004: 11003: 10960: 10953: 10937:<script> 10929: 10869:Xbegin<!--Y 10808: 10801: 10797: 10794: 10793: 10792: 10765: 10748: 10746: 10744: 10718: 10698: 10681: 10679: 10677: 10660:originated in 10647: 10621:Main article: 10618: 10601: 10599: 10597: 10580:originated in 10567: 10505:Main article: 10502: 10494:</layer> 10485: 10483: 10481: 10460:originated in 10447: 10415:Main article: 10412: 10404:</blink> 10395: 10393: 10364: 10348: 10347: 10346: 10344: 10342: 10339: 10338: 10337: 10312:<nextid> 10309: 10306: 10293: 10291: 10289: 10271: 10264: 10247: 10245: 10243: 10215: 10205: 10192: 10190: 10188: 10170: 10163: 10146: 10144: 10125: 10122: 10053: 10050: 10047: 10038: 10035: 10003: 9964: 9961: 9958: 9938:screen readers 9929: 9916:<iframe> 9893: 9887: 9886: 9885: 9880:Transitional, 9870: 9850:<iframe> 9842: 9828: 9826: 9821:Transitional, 9812: 9805: 9788: 9786: 9784: 9770: 9755: 9742: 9740: 9738: 9724: 9706: 9689: 9687: 9681:<iframe> 9662: 9631:<iframe> 9622:Main article: 9619: 9616: 9615: 9614: 9599: 9588: 9584:</tfoot> 9574: 9572: 9557: 9550: 9546:</tbody> 9536: 9534: 9519: 9512: 9508:</thead> 9498: 9496: 9481: 9474: 9460: 9458: 9443: 9436: 9422: 9420: 9405: 9394: 9380: 9378: 9363: 9356: 9342: 9340: 9325: 9314: 9300: 9298: 9283: 9276: 9262: 9260: 9245: 9234: 9230:</table> 9220: 9191: 9188: 9187: 9186: 9176: 9162: 9142: 9140: 9130: 9127: 9107: 9105: 9095: 9092: 9078: 9076: 9066: 9063: 9049: 9047: 9037: 9034:<select> 9032:elements in a 9030:<option> 9026: 9012: 9010: 9000: 8997:<select> 8993: 8973: 8971: 8961: 8938: 8934:</meter> 8924: 8922: 8912: 8905: 8891: 8889: 8879: 8872: 8868:</label> 8852: 8850: 8840: 8837: 8820: 8818: 8816: 8780: 8750: 8737: 8735: 8733: 8732: 8731: 8724: 8716: 8714: 8711: 8703: 8701: 8698: 8690: 8688: 8681: 8673: 8671: 8668: 8660: 8658: 8655: 8647: 8645: 8634: 8626: 8624: 8613: 8605: 8603: 8592: 8584: 8582: 8575: 8567: 8565: 8551: 8542: 8534: 8532: 8525: 8517: 8515: 8500: 8492: 8490: 8483: 8475: 8473: 8462: 8454: 8452: 8445: 8437: 8435: 8432:<button> 8428: 8420: 8418: 8409: 8401: 8399: 8390: 8382: 8375: 8365: 8359: 8349: 8347: 8337: 8334:<legend> 8326: 8312: 8310: 8300: 8293: 8279: 8277: 8267: 8264: 8250: 8248: 8238: 8223: 8203: 8185:Main article: 8182: 8179: 8178: 8177: 8167: 8156: 8152:</video> 8142: 8140: 8130: 8127: 8123:</track> 8113: 8111: 8101: 8086: 8072: 8070: 8060: 8049:<object> 8045:<object> 8041:<applet> 8037: 8027: 8025: 8015: 7993: 7979: 7977: 7967: 7960: 7946: 7944: 7924: 7870: 7860: 7858: 7855:<object> 7851: 7848: 7844:</embed> 7834: 7832: 7822: 7814:Canvas element 7812:Main article: 7809: 7795: 7793: 7783: 7774:Adds playable 7772: 7768:</audio> 7758: 7756: 7746: 7735: 7725: 7723: 7720:<object> 7693: 7690:<object> 7682: 7665: 7663: 7658: 7657: 7638: 7636: 7629: 7623: 7620: 7619: 7618: 7607: 7604: 7594: 7592: 7582: 7575: 7561: 7559: 7549: 7546: 7532: 7530: 7515: 7499:vertical-align 7478:vertical-align 7467: 7464: 7450: 7448: 7434: 7432: 7422: 7419:<script> 7417: 7408: 7394: 7392: 7382: 7375: 7361: 7359: 7349: 7342: 7328: 7326: 7316: 7309: 7295: 7293: 7283: 7276: 7262: 7260: 7250: 7243: 7229: 7227: 7210: 7200: 7190: 7174: 7160: 7158: 7148: 7141: 7127: 7125: 7120:elements. Two 7105: 7095: 7093:Inserted text. 7092: 7077: 7063: 7061: 7051: 7048: 7041: 7027: 7025: 7015: 7012: 6998: 6996: 6973: 6956: 6953: 6939: 6937: 6927: 6924: 6910: 6908: 6898: 6895: 6881: 6879: 6869: 6866: 6856: 6852: 6849: 6848: 6847: 6837: 6823:Main article: 6820: 6806: 6802: 6799: 6798: 6772: 6771: 6770: 6710: 6667: 6663: 6662:and unit-size 6659: 6650: 6647: 6626: 6607: 6606: 6569: 6552:"-1" 6518:"+1" 6502: 6465: 6424: 6353: 6336: 6334: 6332: 6288: 6253: 6236: 6234: 6232: 6206: 6178: 6161: 6159: 6157: 6139: 6115: 6112: 6095: 6093: 6091: 6088:<strike> 6057: 6042:<strike> 6030: 6016: 6014: 6004: 5952: 5948:</small> 5938: 5936: 5892: 5870:. Restored in 5835: 5821: 5819: 5799: 5741:, set font to 5735: 5721: 5719: 5699: 5696:<strong> 5680:<strong> 5653:, set font to 5647: 5633: 5602: 5599: 5598: 5597: 5577: 5573: 5570: 5556: 5554: 5534: 5527: 5513: 5511: 5491: 5487: 5484: 5470: 5468: 5448: 5441: 5427: 5387:), variables ( 5372: 5369: 5368: 5367: 5347: 5337: 5323: 5321: 5301: 5299: 5295: 5281: 5279: 5259: 5256: 5242: 5240: 5218: 5169: 5152: 5150: 5148: 5138: 5101: 5087: 5083: 5080: 5076:<strong> 5067: 5064: 5063: 5062: 5042: 4981:The attribute 4768: 4754: 4743: 4740: 4723: 4720: 4719: 4718: 4708: 4705:<script> 4686: 4672: 4670: 4660: 4651: 4637: 4635: 4615: 4587:<object> 4524: 4510: 4508: 4498: 4491: 4477: 4475: 4465: 4462: 4448: 4446: 4406: 4399: 4385: 4383: 4373: 4370: 4356: 4354: 4344: 4337: 4323: 4321: 4311: 4308:thematic break 4304: 4294: 4292: 4282: 4279: 4265: 4263: 4253: 4250: 4236: 4234: 4224: 4221:<figure> 4217: 4206:<figcaption 4203: 4201: 4191: 4184: 4170: 4168: 4153: 4139:Main article: 4136: 4122: 4120: 4110: 4103: 4089: 4087: 4061: 4052: 4035: 4033: 4031: 4007: 3973:Main article: 3970: 3959:<blockquote 3956: 3954: 3944: 3941: 3937:</aside> 3927: 3925: 3915: 3909:Main article: 3906: 3892: 3890: 3870: 3867: 3853: 3849: 3846: 3845: 3844: 3808: 3793: 3776: 3774: 3772: 3752: 3741: 3727: 3725: 3705: 3680: 3627: 3613: 3611: 3591: 3581: 3580: 3570: 3560: 3550: 3540: 3525: 3468: 3454: 3452: 3432: 3429: 3415: 3413: 3393: 3390: 3376: 3374: 3354: 3339: 3325: 3321: 3318: 3317: 3316: 3299: 3297: 3261: 3247: 3245: 3231: 3229: 3215: 3213: 3199: 3197: 3183: 3181: 3167: 3165: 3145: 3142: 3128: 3124: 3121: 3117: 3116: 3101: 3094: 3086: 3066: 3065:Block elements 3063: 3059: 3058: 3055: 3039: 3036: 3035: 3034: 3017: 3007: 3006: 2996: 2992: 2989: 2967: 2963:</title> 2953: 2951: 2941: 2861: 2857:</style> 2847: 2845: 2835: 2828: 2814: 2812: 2802: 2795: 2781: 2779: 2769: 2743:"DC" 2601:Main article: 2598: 2588: 2586: 2566: 2457: 2447: 2445: 2427: 2414: 2412: 2410: 2384: 2369: 2356: 2354: 2352: 2331: 2312: 2302: 2298: 2295: 2294: 2293: 2283: 2280: 2268: 2255: 2253: 2243: 2240: 2228: 2214: 2212: 2202: 2199: 2188: 2174: 2170: 2167: 2166: 2165: 2158: 2152: 2137: 2127: 2096:<script> 2023: 2020: 1961: 1960: 1954: 1944: 1921:user agents). 1904: 1903:Element status 1901: 1843: 1840: 1819: 1787: 1765: 1761: 1754: 1750: 1744: 1740: 1726: 1723: 1696: 1640: 1607: /> 1604: 1592: 1578: 1569: 1568: 1558: 1549: 1542: 1536: 1516: 1515: 1509: 1496: 1489: 1479: 1451: 1448: 1399: 1358:42 Wallaby Way 1338: 1334: 1326: 1292:42 Wallaby Way 1272: 1258: 1232: 1223:angle brackets 1211: 1196: 1193: 1190: 1187: 1184: 1181: 1178: 1171: 1162: 1159: 1156: 1151: 1148: 1145: 1136: 1131: 1127: 1123: 1118: 1107: 1104: 1101: 1098: 1095: 1092: 1089: 1082: 1077: 1074: 1071: 1068: 1065: 1062: 1059: 1056: 1053: 1050: 1044: 1038: 1035: 1029: 1026: 1023: 1020: 1009: 1006: 1003: 997: 994: 991: 988: 985: 978: 970: 963: 955: 952: 949: 946: 943: 937: 934: 931: 928: 925: 922: 919: 916: 913: 907: 904: 901: 898: 888: 884: 881: 878: 875: 872: 869: 866: 863: 860: 848: 845: 832: 829: 826: 823: 818: 815: 812: 809: 806: 803: 800: 797: 794: 783: 779: 776: 773: 770: 767: 753: 749: 729: 728: 727: 725: 722: 720: 717: 647: 641: 616: 613: 606: 500: 478: 473: 469: 444: 399: 396: 386: 383: 338: 337: 335: 334: 327: 320: 312: 309: 308: 307: 306: 301: 293: 292: 288: 287: 286: 285: 280: 275: 270: 265: 264: 263: 253: 252: 251: 246: 241: 231: 230: 229: 219: 214: 209: 208: 207: 197: 192: 187: 182: 181: 180: 175: 165: 160: 155: 154: 153: 146:HTML attribute 143: 142: 141: 136: 131: 126: 116: 115: 114: 112:Mobile Profile 109: 99: 98: 97: 92: 87: 82: 72: 64: 63: 26: 24: 14: 13: 10: 9: 6: 4: 3: 2: 12986: 12975: 12972: 12970: 12967: 12966: 12964: 12955: 12946: 12944: 12940: 12936: 12935: 12931: 12926: 12914: 12910: 12906: 12904: 12892: 12888: 12883: 12880: 12870: 12866: 12862: 12858: 12854: 12853:Çelik, Tantek 12850: 12846: 12841: 12831: 12827: 12823: 12819: 12815: 12810: 12800: 12796: 12792: 12788: 12784: 12780: 12775: 12765: 12762: 12757: 12752: 12748: 12744: 12743: 12737: 12735: 12730: 12728: 12717: 12713: 12712:Raggett, Dave 12709: 12707: 12702: 12692: 12689:(June 1993). 12688: 12687:Connolly, Dan 12684: 12680: 12678: 12673: 12671: 12660: 12656: 12652: 12650: 12645: 12644: 12641:Other sources 12640: 12636: 12634: 12630: 12617: 12613: 12609: 12605: 12600: 12598: 12596: 12583: 12579: 12574: 12569: 12567: 12565: 12552: 12548: 12542: 12540: 12529: 12525: 12520: 12515: 12505:. 2002-08-01 12504: 12500: 12496: 12491: 12488: 12484: 12472: 12468: 12464: 12463:Raggett, Dave 12460: 12455: 12445: 12441: 12437: 12436:Raggett, Dave 12433: 12430:HTML 3.2: 12428: 12418: 12415: 12410: 12405: 12401: 12397: 12396: 12391: 12390:Connolly, Dan 12387: 12383: 12380:HTML 2.0: 12378: 12377: 12373: 12367: 12359: 12355: 12349: 12346: 12334: 12327: 12325: 12321: 12316: 12312: 12311:"<xmp>" 12306: 12303: 12290: 12286: 12282: 12276: 12274: 12270: 12259: 12253: 12250: 12239: 12238: 12231: 12228: 12216: 12210: 12207: 12196: 12190: 12187: 12175: 12169: 12166: 12162: 12158: 12152: 12149: 12138: 12137: 12130: 12127: 12116: 12115: 12108: 12105: 12093: 12092: 12087: 12081: 12078: 12074: 12068: 12065: 12061:<embed> 12058: 12053: 12050: 12046:<embed> 12044: 12040: 12037: 12032: 12029: 12024: 12020: 12019:"<wbr>" 12014: 12011: 12006: 12002: 11996: 11993: 11988: 11984: 11978: 11975: 11970: 11966: 11960: 11957: 11952: 11948: 11942: 11939: 11934: 11930: 11924: 11921: 11916: 11912: 11906: 11903: 11898: 11894: 11888: 11885: 11880: 11876: 11870: 11867: 11863: 11859: 11858: 11852: 11849: 11845: 11841: 11840: 11834: 11831: 11818: 11814: 11810: 11804: 11801: 11788: 11782: 11779: 11768: 11767: 11760: 11758: 11754: 11743: 11742: 11735: 11732: 11721: 11720: 11713: 11710: 11699: 11698: 11691: 11688: 11677: 11676: 11669: 11666: 11655: 11654: 11647: 11644: 11640: 11635: 11632: 11627: 11623: 11617: 11614: 11609: 11605: 11599: 11596: 11584: 11578: 11573: 11572: 11563: 11560: 11549: 11548: 11541: 11538: 11532: 11531: 11526: 11520: 11517: 11504: 11500: 11494: 11491: 11478: 11474: 11470: 11464: 11461: 11457: 11452: 11449: 11445: 11440: 11437: 11433: 11428: 11425: 11421: 11416: 11413: 11402: 11398: 11394: 11387: 11384: 11380: 11375: 11372: 11367: 11363: 11359: 11353: 11350: 11345: 11341: 11335: 11332: 11328: 11323: 11320: 11316: 11311: 11308: 11304: 11299: 11296: 11292: 11291:eXtensibility 11288: 11283: 11280: 11276: 11271: 11268: 11263: 11259: 11252: 11249: 11244: 11240: 11236: 11230: 11228: 11224: 11219: 11215: 11211: 11205: 11202: 11190: 11186: 11180: 11178: 11176: 11174: 11172: 11168: 11163: 11159: 11153: 11150: 11145: 11141: 11137: 11131: 11128: 11123: 11119: 11115: 11109: 11107: 11103: 11097: 11089: 11083: 11080: 11065:However, see 11062: 11059: 11053: 11050: 11044: 11041: 11035: 11032: 11025: 11021: 11018: 11016: 11013: 11012: 11008: 10958: 10954: 10933:<style> 10930: 10923: 10915: 10914: 10913: 10910: 10906: 10903: 10883: 10872:and the text 10857: 10824: 10822: 10818: 10814: 10809: 10800: 10795: 10766: 10762: 10758: 10754: 10751: 10745: 10742: 10738: 10734: 10719: 10699: 10695: 10691: 10690:</nobr> 10687: 10684: 10678: 10675: 10671: 10667: 10663: 10648: 10645: 10641: 10637: 10633: 10629: 10624: 10619: 10615: 10611: 10607: 10604: 10598: 10595: 10591: 10587: 10583: 10568: 10565: 10561: 10557: 10553: 10549: 10545: 10541: 10537: 10533: 10529: 10525: 10521: 10517: 10513: 10508: 10507:Layer element 10503: 10499: 10495: 10491: 10488: 10482: 10479: 10475: 10471: 10467: 10463: 10448: 10445: 10423: 10418: 10417:Blink element 10413: 10409: 10405: 10401: 10398: 10392: 10390: 10388: 10382: 10379: 10372: 10370: 10362: 10359: 10340: 10335: 10331: 10327: 10323: 10319: 10318: 10310: 10307: 10303: 10299: 10296: 10290: 10287: 10283: 10279: 10275: 10272: 10269: 10265: 10261: 10257: 10253: 10250: 10244: 10241: 10237: 10233: 10229: 10225: 10224: 10216: 10213: 10206: 10202: 10198: 10195: 10194:<plaintext 10189: 10186: 10182: 10178: 10174: 10171: 10168: 10164: 10160: 10156: 10152: 10149: 10143: 10141: 10139: 10135: 10131: 10123: 10048: 10046: 10036: 10001: 9959: 9957: 9947: 9943: 9942:accessibility 9939: 9931: 9927: 9925: 9921: 9905: 9899: 9888: 9883: 9879: 9875: 9871: 9843: 9839: 9835: 9832: 9827: 9824: 9820: 9816: 9813: 9806: 9802: 9798: 9794: 9791: 9785: 9782: 9778: 9774: 9771: 9756: 9752: 9748: 9745: 9739: 9736: 9732: 9728: 9725: 9722: 9707: 9703: 9699: 9695: 9692: 9686: 9684: 9660: 9650: 9648: 9644: 9640: 9636: 9625: 9617: 9612: 9608: 9604: 9600: 9596:<thead> 9592:<table> 9589: 9585: 9581: 9578: 9573: 9570: 9566: 9562: 9558: 9554:<table> 9551: 9547: 9543: 9540: 9535: 9532: 9528: 9524: 9520: 9516:<table> 9513: 9509: 9505: 9502: 9497: 9494: 9490: 9486: 9482: 9478:<table> 9475: 9471: 9467: 9464: 9459: 9456: 9452: 9448: 9444: 9440:<table> 9437: 9433: 9429: 9426: 9421: 9418: 9414: 9410: 9406: 9402:<table> 9399: 9395: 9391: 9387: 9384: 9379: 9376: 9372: 9368: 9364: 9360:<table> 9357: 9353: 9349: 9346: 9341: 9338: 9334: 9330: 9326: 9323: 9318:<table> 9315: 9311: 9307: 9304: 9299: 9296: 9292: 9288: 9284: 9280:<table> 9277: 9273: 9269: 9266: 9261: 9258: 9254: 9250: 9246: 9239: 9235: 9231: 9227: 9224: 9219: 9217: 9215: 9211: 9207: 9203: 9202: 9197: 9189: 9184: 9180: 9177: 9174: 9163: 9159: 9155: 9150: 9146: 9141: 9138: 9134: 9131: 9128: 9124: 9120: 9115: 9111: 9106: 9103: 9099: 9096: 9093: 9089: 9085: 9082: 9077: 9074: 9070: 9067: 9064: 9060: 9056: 9053: 9048: 9045: 9041: 9038: 9027: 9023: 9019: 9016: 9011: 9008: 9004: 9001: 8994: 8990: 8986: 8981: 8977: 8972: 8969: 8965: 8962: 8939: 8935: 8931: 8928: 8923: 8920: 8916: 8913: 8906: 8902: 8898: 8895: 8890: 8887: 8883: 8880: 8873: 8869: 8865: 8860: 8856: 8851: 8848: 8844: 8841: 8838: 8834: 8830: 8826: 8823: 8817: 8814: 8810: 8806: 8802: 8798: 8794: 8790: 8789: 8781: 8778: 8774: 8770: 8765: 8764: 8751: 8747: 8743: 8740: 8734: 8725: 8720: 8715: 8712: 8707: 8702: 8699: 8694: 8689: 8682: 8677: 8672: 8669: 8664: 8659: 8656: 8651: 8646: 8643: 8635: 8630: 8625: 8622: 8614: 8609: 8604: 8601: 8593: 8588: 8583: 8580: 8576: 8571: 8566: 8563: 8559: 8555: 8549: 8543: 8538: 8533: 8526: 8521: 8516: 8505: 8501: 8496: 8491: 8488: 8484: 8479: 8474: 8467: 8463: 8458: 8453: 8450: 8446: 8441: 8436: 8429: 8424: 8419: 8416: 8415: 8410: 8405: 8400: 8397: 8396: 8391: 8386: 8381: 8379: 8376: 8373: 8369: 8366: 8362:<input> 8360: 8356: 8353: 8348: 8345: 8341: 8338: 8327: 8323: 8319: 8316: 8311: 8308: 8304: 8301: 8294: 8290: 8286: 8283: 8278: 8275: 8271: 8268: 8265: 8261: 8257: 8254: 8249: 8246: 8242: 8239: 8228: 8224: 8220: 8219:</form> 8216: 8211: 8207: 8202: 8200: 8197: 8195: 8188: 8180: 8175: 8171: 8168: 8161: 8157: 8153: 8149: 8146: 8141: 8138: 8134: 8131: 8128: 8124: 8120: 8117: 8112: 8109: 8105: 8102: 8098:<audio> 8094:<video> 8087: 8083: 8079: 8076: 8071: 8068: 8064: 8061: 8054: 8038: 8034: 8031: 8026: 8023: 8019: 8016: 8013: 8010: 8006: 8002: 7994: 7990: 7986: 7983: 7978: 7975: 7971: 7968: 7965: 7961: 7957: 7953: 7950: 7945: 7942: 7938: 7934: 7933: 7925: 7922: 7918: 7910: 7909:Google Chrome 7906: 7898: 7894: 7886: 7875: 7871: 7867: 7864: 7859: 7852: 7849: 7845: 7841: 7838: 7833: 7830: 7826: 7823: 7820: 7815: 7810: 7806: 7802: 7799: 7794: 7791: 7787: 7784: 7777: 7773: 7769: 7765: 7762: 7757: 7754: 7750: 7747: 7740: 7736: 7732: 7729: 7724: 7717: 7713: 7709: 7705: 7701: 7697: 7694: 7687: 7683: 7679: 7675: 7671: 7668: 7662: 7654: 7642: 7637: 7628: 7627: 7621: 7616: 7612: 7608: 7605: 7601: 7598: 7593: 7590: 7586: 7583: 7580: 7576: 7572: 7571:</time> 7568: 7565: 7560: 7557: 7553: 7550: 7547: 7543: 7539: 7536: 7531: 7528: 7524: 7520: 7516: 7470: 7465: 7461: 7457: 7454: 7449: 7445: 7441: 7438: 7433: 7430: 7426: 7423: 7415: 7413: 7409: 7405: 7401: 7398: 7393: 7390: 7386: 7383: 7380: 7377:Represents a 7376: 7372: 7371:</ruby> 7368: 7365: 7360: 7357: 7353: 7350: 7347: 7343: 7339: 7335: 7332: 7327: 7324: 7320: 7317: 7314: 7310: 7306: 7302: 7299: 7294: 7291: 7287: 7284: 7281: 7277: 7273: 7269: 7266: 7261: 7258: 7254: 7251: 7248: 7244: 7240: 7236: 7233: 7228: 7211: 7208: 7204: 7201: 7198: 7188: 7181: 7175: 7171: 7167: 7164: 7159: 7156: 7152: 7149: 7142: 7138: 7137:</mark> 7134: 7131: 7126: 7106: 7103: 7099: 7096: 7090: 7078: 7074: 7070: 7067: 7062: 7059: 7055: 7052: 7049:Deleted text. 7046: 7045:strikethrough 7042: 7038: 7034: 7031: 7026: 7023: 7019: 7016: 7013: 7009: 7008:</data> 7005: 7002: 6997: 6989: 6981: 6977: 6974: 6971: 6967: 6963: 6962: 6957: 6954: 6950: 6949:</cite> 6946: 6943: 6938: 6935: 6931: 6928: 6925: 6921: 6917: 6914: 6909: 6906: 6902: 6899: 6896: 6892: 6888: 6885: 6880: 6877: 6873: 6870: 6867: 6863: 6860: 6855: 6850: 6845: 6841: 6838: 6835: 6831: 6826: 6821: 6817: 6816:</span> 6813: 6810: 6805: 6800: 6796: 6792: 6788: 6784: 6780: 6776: 6773: 6768: 6711: 6668: 6610: 6609: 6570: 6503: 6481:"4" 6466: 6461: 6425: 6388: 6387: 6354: 6350: 6346: 6345:</font> 6342: 6339: 6333: 6330: 6324: 6318: 6312: 6306: 6302: 6298: 6297: 6289: 6265: 6257: 6254: 6250: 6246: 6242: 6239: 6233: 6230: 6226: 6222: 6218: 6214: 6207: 6183: 6182:Strikethrough 6179: 6175: 6171: 6167: 6164: 6158: 6155: 6151: 6150:not supported 6147: 6143: 6140: 6113: 6109: 6105: 6101: 6098: 6092: 6085: 6081: 6077: 6073: 6069: 6065: 6058: 6047: 6039: 6038:Strikethrough 6035: 6031: 6027: 6023: 6020: 6015: 6012: 6008: 6005: 6000: 5996: 5989:<small> 5986: 5957: 5953: 5949: 5945: 5942: 5937: 5934: 5930: 5926: 5922: 5918: 5914: 5910: 5906: 5902: 5901: 5893: 5886: 5877: 5873: 5869: 5844: 5840: 5836: 5832: 5828: 5825: 5820: 5817: 5813: 5809: 5808: 5800: 5797: 5785: 5781: 5777: 5748: 5744: 5740: 5736: 5732: 5728: 5725: 5720: 5717: 5713: 5709: 5708: 5700: 5689: 5685: 5656: 5652: 5648: 5644: 5640: 5637: 5632: 5631: 5629: 5624:<small> 5613: 5609: 5600: 5595: 5591: 5587: 5586: 5578: 5571: 5567: 5563: 5560: 5555: 5552: 5548: 5544: 5543: 5535: 5528: 5524: 5523:</samp> 5520: 5517: 5512: 5509: 5505: 5501: 5500: 5492: 5485: 5481: 5477: 5474: 5469: 5466: 5462: 5458: 5457: 5449: 5442: 5438: 5437:</code> 5434: 5431: 5426: 5424: 5370: 5365: 5361: 5357: 5356: 5348: 5345: 5338: 5334: 5330: 5327: 5322: 5319: 5315: 5311: 5310: 5302: 5297: 5296: 5292: 5288: 5285: 5280: 5277: 5273: 5269: 5268: 5260: 5257: 5253: 5249: 5246: 5241: 5234: 5230: 5229:not supported 5226: 5222: 5219: 5186: 5170: 5166: 5162: 5158: 5155: 5149: 5146: 5142: 5139: 5106: 5102: 5098: 5097:</abbr> 5094: 5091: 5086: 5081: 5079: 5065: 5060: 5056: 5052: 5051: 5043: 5041: 5039: 5035: 5026: 4979: 4945: 4911: 4861: 4824: 4820: 4816: 4805: 4796: 4794: 4790: 4786: 4782: 4778: 4773: 4769: 4765: 4761: 4758: 4753: 4749: 4748:WP:ANCHOR DEF 4741: 4739: 4721: 4716: 4712: 4709: 4687: 4683: 4679: 4676: 4671: 4668: 4664: 4661: 4658: 4652: 4648: 4644: 4641: 4636: 4633: 4629: 4625: 4624: 4616: 4613: 4607: 4601: 4599:<small> 4595: 4589: 4583: 4581:<image> 4540: 4536: 4532: 4528: 4527:Pre-formatted 4525: 4521: 4517: 4514: 4509: 4506: 4502: 4499: 4496: 4492: 4488: 4484: 4481: 4476: 4473: 4469: 4466: 4463: 4459: 4455: 4452: 4447: 4444: 4440: 4436: 4432: 4428: 4424: 4420: 4416: 4415: 4407: 4400: 4396: 4395:</menu> 4392: 4389: 4384: 4381: 4377: 4374: 4371: 4367: 4366:</main> 4363: 4360: 4355: 4352: 4348: 4345: 4342: 4338: 4334: 4330: 4327: 4322: 4319: 4315: 4312: 4309: 4305: 4301: 4298: 4293: 4290: 4286: 4283: 4280: 4276: 4272: 4269: 4264: 4261: 4257: 4254: 4251: 4247: 4243: 4240: 4235: 4232: 4228: 4225: 4218: 4214: 4210: 4207: 4202: 4199: 4195: 4192: 4185: 4181: 4177: 4174: 4169: 4166: 4162: 4158: 4154: 4151: 4147: 4142: 4137: 4133: 4129: 4126: 4121: 4118: 4114: 4111: 4108: 4104: 4100: 4096: 4093: 4088: 4085: 4081: 4080:not supported 4077: 4073: 4069: 4065: 4062: 4059: 4053: 4049: 4045: 4041: 4038: 4032: 4029: 4025: 4021: 4017: 4016: 4008: 4005: 3998: 3996: 3992: 3982: 3976: 3971: 3967: 3963: 3960: 3955: 3952: 3948: 3945: 3942: 3938: 3934: 3931: 3926: 3923: 3919: 3916: 3912: 3907: 3903: 3899: 3896: 3891: 3888: 3884: 3880: 3879: 3871: 3868: 3864: 3860: 3857: 3852: 3847: 3842: 3838: 3834: 3830: 3826: 3822: 3818: 3817: 3809: 3794: 3790: 3786: 3782: 3779: 3773: 3770: 3766: 3762: 3761: 3753: 3742: 3738: 3734: 3731: 3726: 3723: 3719: 3715: 3714: 3706: 3699: 3628: 3624: 3620: 3617: 3612: 3609: 3605: 3601: 3600: 3592: 3589: 3571: 3566:; CSS value: 3561: 3556:; CSS value: 3551: 3546:; CSS value: 3541: 3536:; CSS value: 3531: 3530: 3469: 3465: 3461: 3458: 3453: 3450: 3446: 3442: 3441: 3433: 3430: 3426: 3422: 3419: 3414: 3411: 3407: 3403: 3402: 3394: 3391: 3387: 3383: 3380: 3375: 3372: 3368: 3364: 3363: 3355: 3351: 3345: 3340: 3336: 3332: 3329: 3324: 3319: 3314: 3310: 3306: 3305: 3300: 3295: 3293: 3289: 3284: 3262: 3258: 3254: 3251: 3246: 3242: 3238: 3235: 3230: 3226: 3222: 3219: 3214: 3210: 3206: 3203: 3198: 3194: 3190: 3187: 3182: 3178: 3174: 3171: 3166: 3163: 3159: 3155: 3154: 3146: 3143: 3139: 3135: 3132: 3127: 3122: 3120: 3114: 3110: 3106: 3102: 3099: 3095: 3091: 3087: 3084: 3080: 3079: 3078: 3076: 3071: 3064: 3062: 3056: 3053: 3052: 3051: 3049: 3045: 3037: 3032: 3028: 3024: 3023: 3018: 3014:<title> 3010:<title> 3004: 3000: 2997: 2993: 2990: 2987: 2983: 2979: 2978: 2976: 2972: 2968: 2964: 2960: 2957: 2952: 2949: 2945: 2942: 2903: 2866: 2862: 2858: 2854: 2851: 2846: 2843: 2839: 2836: 2829: 2825: 2821: 2818: 2813: 2810: 2806: 2803: 2796: 2792: 2788: 2785: 2780: 2777: 2773: 2770: 2767: 2764: 2693: 2653: 2649: 2642:In one form, 2640: 2638: 2630: 2622: 2614: 2610: 2604: 2599: 2595: 2592: 2587: 2584: 2580: 2576: 2575: 2567: 2564: 2522: 2470: 2466: 2462: 2458: 2454: 2451: 2446: 2443: 2428: 2424: 2420: 2417: 2411: 2408: 2404: 2400: 2396: 2392: 2388: 2385: 2382: 2378: 2370: 2366: 2362: 2359: 2353: 2350: 2346: 2342: 2341: 2332: 2329: 2317: 2313: 2309: 2306: 2301: 2296: 2291: 2287: 2284: 2281: 2278: 2275: 2269: 2265: 2264:</body> 2262: 2259: 2254: 2251: 2247: 2244: 2241: 2238: 2235: 2229: 2225: 2224:</head> 2221: 2218: 2213: 2210: 2206: 2203: 2200: 2197: 2193: 2189: 2185: 2184:</html> 2181: 2178: 2173: 2168: 2159: 2156: 2153: 2151:instructions. 2150: 2138: 2128: 2105: 2104: 2103: 2101: 2092:<style> 2090:The elements 2088: 2085: 2082: 2078: 2065: 2054: 2050: 2048: 2044: 2039: 2037: 2033: 2029: 2021: 2019: 2017: 2012: 2010: 2009: 2004: 2000: 1996: 1991: 1989: 1985: 1981: 1977: 1972: 1970: 1966: 1958: 1955: 1952: 1948: 1945: 1942: 1939: 1938: 1937: 1935: 1931: 1927: 1922: 1920: 1916: 1912: 1911: 1902: 1900: 1898: 1894: 1890: 1886: 1881: 1879: 1875: 1870: 1868: 1864: 1860: 1855: 1853: 1849: 1841: 1817: 1815: 1785: 1779: 1775: 1773: 1737: 1733: 1732: 1724: 1694: 1692: 1687: 1638: 1624: 1616: 1612: 1600: 1588: 1585:Void elements 1580: 1576: 1573:<title> 1566: 1554: 1550: 1547: 1543: 1533:(in the form 1532: 1528: 1527: 1526: 1524: 1505: 1501: 1497: 1494: 1490: 1487: 1475: 1471: 1470: 1469: 1467: 1459: 1457: 1449: 1447: 1445: 1440: 1438: 1434: 1397: 1391: 1383: 1336: 1332: 1324: 1318: 1270: 1264: 1263: 1262:void elements 1256: 1230: 1224: 1220: 1169: 1134: 1080: 976: 961: 886: 846: 781: 723: 718: 716: 690: 688: 684: 670: 669:declaration. 653: 642: 640: 638: 634: 630: 625: 622: 614: 612: 610: 604: 498: 496: 492: 483: 477: 466: 461: 455: 449: 443: 441: 437: 431: 426: 424: 423: 416: 413: 408: 406: 397: 391: 384: 382: 380: 376: 372: 368: 364: 359: 357: 353: 349: 346:is a type of 345: 333: 328: 326: 321: 319: 314: 313: 311: 310: 305: 302: 300: 297: 296: 295: 294: 289: 284: 281: 279: 276: 274: 271: 269: 266: 262: 259: 258: 257: 254: 250: 247: 245: 242: 240: 237: 236: 235: 232: 228: 225: 224: 223: 220: 218: 215: 213: 210: 206: 203: 202: 201: 198: 196: 193: 191: 188: 186: 185:Language code 183: 179: 176: 174: 171: 170: 169: 166: 164: 161: 159: 156: 152: 151:alt attribute 149: 148: 147: 144: 140: 137: 135: 132: 130: 127: 125: 122: 121: 120: 117: 113: 110: 108: 105: 104: 103: 100: 96: 93: 91: 88: 86: 83: 81: 78: 77: 76: 73: 71: 68: 67: 66: 65: 62: 58: 55: 51: 44: 37: 33: 32:Help:Wikitext 19: 12924: 12917:. Retrieved 12902: 12895:. Retrieved 12872:. Retrieved 12857:Hickson, Ian 12843:CSS 2.1: 12833:. Retrieved 12802:. Retrieved 12777:XML 1.0: 12767:. Retrieved 12741: 12731: 12726: 12719:. Retrieved 12703: 12694:. Retrieved 12674: 12669: 12662:. Retrieved 12646: 12626: 12619:. Retrieved 12608:Hickson, Ian 12592: 12585:. Retrieved 12561: 12554:. Retrieved 12538: 12531:. Retrieved 12507:. Retrieved 12474:. Retrieved 12447:. Retrieved 12420:. Retrieved 12394: 12368:Bibliography 12357: 12348: 12337:. Retrieved 12315:MDN Web Docs 12314: 12305: 12293:. Retrieved 12284: 12261:. Retrieved 12252: 12242:, retrieved 12236: 12230: 12219:. Retrieved 12209: 12198:. Retrieved 12189: 12178:. Retrieved 12168: 12160: 12151: 12141:, retrieved 12135: 12129: 12119:, retrieved 12113: 12107: 12096:. Retrieved 12089: 12080: 12067: 12052: 12031: 12023:MDN Web Docs 12022: 12013: 12005:MDN Web Docs 12004: 11995: 11987:MDN Web Docs 11986: 11977: 11969:MDN Web Docs 11968: 11959: 11951:MDN Web Docs 11950: 11941: 11933:MDN Web Docs 11932: 11923: 11915:MDN Web Docs 11914: 11905: 11896: 11887: 11879:MDN Web Docs 11878: 11869: 11856: 11851: 11838: 11833: 11821:. Retrieved 11812: 11803: 11791:. Retrieved 11781: 11771:, retrieved 11765: 11746:, retrieved 11740: 11734: 11724:, retrieved 11718: 11712: 11702:, retrieved 11696: 11690: 11680:, retrieved 11674: 11668: 11658:, retrieved 11652: 11646: 11634: 11625: 11616: 11607: 11598: 11586:. Retrieved 11570: 11562: 11552:, retrieved 11546: 11540: 11528: 11519: 11507:. Retrieved 11502: 11493: 11481:. Retrieved 11472: 11463: 11451: 11439: 11427: 11415: 11404:. Retrieved 11396: 11386: 11374: 11361: 11352: 11334: 11322: 11310: 11298: 11290: 11282: 11270: 11262:A List Apart 11251: 11238: 11213: 11204: 11192:. Retrieved 11188: 11152: 11139: 11130: 11117: 11086:Strictly an 11082: 11061: 11052: 11043: 11034: 10911: 10907: 10904: 10884: 10858: 10825: 10817:SGML comment 10810: 10761:(deprecated) 10760: 10756: 10752: 10749: 10736: 10732: 10694:(deprecated) 10693: 10689: 10685: 10682: 10669: 10665: 10643: 10639: 10635: 10631: 10614:(deprecated) 10613: 10609: 10605: 10602: 10589: 10585: 10563: 10559: 10555: 10551: 10547: 10543: 10539: 10535: 10531: 10527: 10523: 10519: 10515: 10511: 10498:(deprecated) 10497: 10493: 10489: 10486: 10473: 10469: 10408:(deprecated) 10407: 10403: 10399: 10396: 10384: 10374: 10366: 10354: 10329: 10321: 10315: 10302:(deprecated) 10301: 10297: 10294: 10281: 10273: 10260:(deprecated) 10259: 10256:</xmp> 10255: 10251: 10248: 10235: 10227: 10221: 10201:(deprecated) 10200: 10196: 10193: 10180: 10172: 10159:(deprecated) 10158: 10154: 10150: 10147: 10137: 10133: 10127: 10040: 9994: 9932: 9923: 9901: 9895: 9881: 9874:standardized 9873: 9848:element, an 9837: 9833: 9830: 9822: 9815:Standardized 9814: 9801:(deprecated) 9800: 9796: 9792: 9790:<noframes 9789: 9780: 9773:Standardized 9772: 9751:(deprecated) 9750: 9746: 9743: 9734: 9727:Standardized 9726: 9702:(deprecated) 9701: 9697: 9693: 9691:<frameset 9690: 9673:<body> 9665:<head> 9658:<body> 9654:<head> 9651: 9627: 9607:Standardized 9606: 9601:Proposed in 9583: 9579: 9576: 9565:Standardized 9564: 9559:Proposed in 9545: 9541: 9538: 9527:Standardized 9526: 9521:Proposed in 9507: 9503: 9500: 9489:Standardized 9488: 9469: 9465: 9462: 9451:Standardized 9450: 9445:Proposed in 9432:</col> 9431: 9427: 9424: 9413:Standardized 9412: 9407:Proposed in 9398:column group 9396:Specifies a 9389: 9385: 9383:<colgroup 9382: 9371:Standardized 9370: 9351: 9347: 9344: 9333:Standardized 9332: 9309: 9305: 9302: 9291:Standardized 9290: 9271: 9267: 9264: 9253:Standardized 9252: 9229: 9225: 9222: 9213: 9209: 9199: 9193: 9179:Standardized 9178: 9157: 9153: 9148: 9145:<textarea 9144: 9133:Standardized 9132: 9122: 9118: 9113: 9109: 9098:Standardized 9097: 9087: 9083: 9081:<progress 9080: 9069:Standardized 9068: 9058: 9054: 9051: 9040:Standardized 9039: 9021: 9017: 9015:<optgroup 9014: 9003:Standardized 9002: 8988: 8984: 8979: 8975: 8964:Standardized 8963: 8933: 8929: 8926: 8915:Standardized 8914: 8900: 8896: 8893: 8882:Standardized 8881: 8867: 8863: 8858: 8854: 8843:Standardized 8842: 8833:(deprecated) 8832: 8828: 8824: 8821: 8808: 8800: 8793:standardized 8792: 8786: 8746:(deprecated) 8745: 8741: 8738: 8718: 8705: 8692: 8687:for numbers. 8675: 8662: 8649: 8628: 8607: 8586: 8569: 8536: 8519: 8503: 8494: 8487:reset button 8486: 8477: 8466:image button 8465: 8456: 8448: 8439: 8422: 8414:radio button 8412: 8403: 8393: 8384: 8378:Input Types: 8377: 8368:Standardized 8367: 8354: 8351: 8340:Standardized 8339: 8321: 8317: 8315:<fieldset 8314: 8303:Standardized 8302: 8288: 8284: 8282:<datalist 8281: 8270:Standardized 8269: 8259: 8255: 8252: 8241:Standardized 8240: 8231:<form> 8218: 8214: 8210: action 8209: 8205: 8198: 8190: 8170:Standardized 8169: 8151: 8147: 8144: 8133:Standardized 8132: 8122: 8118: 8115: 8104:Standardized 8103: 8081: 8077: 8074: 8063:Standardized 8062: 8032: 8029: 8018:Standardized 8017: 7988: 7984: 7981: 7970:Standardized 7969: 7956:</map> 7955: 7951: 7948: 7937:standardized 7936: 7930: 7923:web browser. 7865: 7862: 7843: 7839: 7836: 7825:Standardized 7824: 7804: 7800: 7797: 7786:Standardized 7785: 7767: 7763: 7760: 7749:Standardized 7748: 7737:Specifies a 7730: 7727: 7711: 7703: 7696:Standardized 7695: 7678:(deprecated) 7677: 7673: 7669: 7666: 7648: 7640: 7611:standardized 7610: 7599: 7596: 7585:Standardized 7584: 7570: 7566: 7563: 7552:Standardized 7551: 7541: 7537: 7535:<template 7534: 7523:Standardized 7522: 7460:</sup> 7459: 7455: 7452: 7444:</sub> 7443: 7439: 7436: 7425:Standardized 7424: 7403: 7399: 7396: 7385:Standardized 7384: 7370: 7366: 7363: 7352:Standardized 7351: 7338:</rtc> 7337: 7333: 7330: 7319:Standardized 7318: 7304: 7300: 7297: 7286:Standardized 7285: 7271: 7267: 7264: 7253:Standardized 7252: 7238: 7234: 7231: 7203:Standardized 7202: 7169: 7165: 7162: 7151:Standardized 7150: 7136: 7132: 7129: 7098:Standardized 7097: 7073:</ins> 7072: 7068: 7065: 7054:Standardized 7053: 7037:</del> 7036: 7032: 7029: 7018:Standardized 7017: 7007: 7003: 7000: 6984:<cite> 6975: 6966:standardized 6965: 6959: 6948: 6944: 6941: 6930:Standardized 6929: 6920:</bdo> 6919: 6915: 6912: 6901:Standardized 6900: 6891:</bdi> 6890: 6886: 6883: 6872:Standardized 6871: 6861: 6858: 6840:Standardized 6839: 6830:style sheets 6825:Span and div 6815: 6811: 6808: 6790: 6782: 6775:Standardized 6774: 6568:is opposite. 6349:(deprecated) 6348: 6344: 6340: 6337: 6328:<samp> 6322:<code> 6301:Standardized 6300: 6294: 6249:(deprecated) 6248: 6244: 6240: 6237: 6224: 6216: 6196:line-through 6181: 6174:(deprecated) 6173: 6169: 6165: 6162: 6149: 6142:Standardized 6141: 6108:(deprecated) 6107: 6104:</big> 6103: 6099: 6096: 6080:Reintroduced 6079: 6071: 6063: 6037: 6025: 6021: 6018: 6007:Standardized 6006: 5947: 5943: 5940: 5929:Reintroduced 5928: 5920: 5912: 5905:standardized 5904: 5898: 5842: 5830: 5826: 5823: 5812:standardized 5811: 5805: 5775: 5742: 5730: 5726: 5723: 5712:standardized 5711: 5705: 5654: 5642: 5638: 5635: 5604: 5601:Presentation 5590:standardized 5589: 5583: 5566:</var> 5565: 5561: 5558: 5547:standardized 5546: 5540: 5531:samp example 5522: 5518: 5515: 5504:standardized 5503: 5497: 5480:</kbd> 5479: 5475: 5472: 5461:standardized 5460: 5454: 5445:code example 5436: 5432: 5429: 5374: 5360:standardized 5359: 5353: 5332: 5328: 5325: 5314:standardized 5313: 5307: 5290: 5286: 5283: 5272:standardized 5271: 5265: 5252:</dfn> 5251: 5247: 5244: 5228: 5221:Standardized 5220: 5165:(deprecated) 5164: 5160: 5156: 5153: 5141:Standardized 5140: 5105:abbreviation 5096: 5092: 5089: 5069: 5055:standardized 5054: 5048: 5027: 4980: 4946: 4933:see contents 4912: 4862: 4797: 4788: 4780: 4776: 4775:In HTML, an 4774: 4770: 4763: 4759: 4756: 4725: 4711:Standardized 4710: 4681: 4677: 4674: 4663:Standardized 4662: 4646: 4642: 4639: 4628:standardized 4627: 4621: 4526: 4520:</pre> 4519: 4515: 4512: 4501:Standardized 4500: 4494: 4486: 4482: 4480:<noscript 4479: 4468:Standardized 4467: 4458:</nav> 4457: 4453: 4450: 4434: 4426: 4419:standardized 4418: 4412: 4394: 4390: 4387: 4376:Standardized 4375: 4365: 4361: 4358: 4347:Standardized 4346: 4340: 4333:</ins> 4332: 4328: 4325: 4314:Standardized 4313: 4299: 4296: 4285:Standardized 4284: 4274: 4270: 4267: 4256:Standardized 4255: 4245: 4241: 4238: 4227:Standardized 4226: 4212: 4208: 4205: 4194:Standardized 4193: 4179: 4175: 4172: 4161:Standardized 4160: 4146:style sheets 4141:Span and div 4132:</div> 4131: 4127: 4124: 4113:Standardized 4112: 4106: 4099:</del> 4098: 4094: 4091: 4079: 4071: 4064:Standardized 4063: 4048:(deprecated) 4047: 4043: 4039: 4036: 4020:standardized 4019: 4013: 3990:<cite> 3978: 3965: 3961: 3958: 3947:Standardized 3946: 3936: 3932: 3929: 3918:Standardized 3917: 3901: 3897: 3894: 3883:standardized 3882: 3876: 3862: 3858: 3855: 3836: 3828: 3821:standardized 3820: 3814: 3789:(deprecated) 3788: 3785:</dir> 3784: 3780: 3777: 3765:standardized 3764: 3758: 3736: 3732: 3729: 3718:standardized 3717: 3711: 3697: 3678:– replacing 3622: 3618: 3615: 3604:standardized 3603: 3597: 3523:– replacing 3463: 3459: 3456: 3445:standardized 3444: 3438: 3424: 3420: 3417: 3406:standardized 3405: 3399: 3385: 3381: 3378: 3367:standardized 3366: 3360: 3334: 3330: 3327: 3309:standardized 3308: 3302: 3287: 3282: 3256: 3252: 3249: 3240: 3236: 3233: 3224: 3220: 3217: 3208: 3204: 3201: 3192: 3188: 3185: 3176: 3172: 3169: 3158:standardized 3157: 3151: 3137: 3133: 3130: 3118: 3104: 3097: 3089: 3082: 3072: 3068: 3060: 3047: 3043: 3041: 3027:standardized 3026: 3020: 3003:web crawlers 2962: 2958: 2955: 2944:Standardized 2943: 2863:Specifies a 2856: 2852: 2849: 2838:Standardized 2837: 2823: 2819: 2816: 2805:Standardized 2804: 2799:<head> 2790: 2786: 2783: 2772:Standardized 2771: 2641: 2637:void element 2633:<meta> 2606: 2603:Meta element 2593: 2590: 2579:standardized 2578: 2572: 2555:<head> 2521:microformats 2469:style sheets 2464: 2460: 2452: 2449: 2423:(deprecated) 2422: 2418: 2415: 2402: 2394: 2387:Standardized 2386: 2381:style sheets 2379:in favor of 2373:<font> 2365:(deprecated) 2364: 2360: 2358:<basefont 2357: 2345:standardized 2344: 2338: 2324:<base> 2315: 2314:Specifies a 2307: 2304: 2286:Standardized 2285: 2270: 2263: 2260: 2257: 2246:Standardized 2245: 2230: 2223: 2219: 2216: 2205:Standardized 2204: 2192:root element 2183: 2179: 2176: 2154: 2149:inline style 2148: 2124:<link> 2089: 2086: 2066: 2055: 2051: 2040: 2025: 2015: 2013: 2006: 1994: 1992: 1973: 1969:standardized 1968: 1964: 1962: 1956: 1950: 1946: 1941:Transitional 1940: 1923: 1914: 1908: 1906: 1892: 1882: 1871: 1867:web browsers 1859:browser wars 1856: 1845: 1811: 1776: 1735: 1729: 1728: 1679: 1582: 1581: 1570: 1552: 1545: 1530: 1518: 1517: 1499: 1492: 1473: 1461: 1460: 1453: 1441: 1436: 1430: 1392:, expects a 1390:abbreviation 1386:<abbr> 1380: 1314: 1260: 1254: 1218: 1216: 691: 671: 649: 626: 618: 615:SGML vs. XML 487: 474:<html> 470:<html> 464: 459: 457: 453: 439: 435: 429: 428: 421: 420: 418: 411: 410: 404: 401: 360: 344:HTML element 343: 341: 200:Style sheets 129:div and span 119:HTML element 118: 70:Dynamic HTML 54: 12787:Paoli, Jean 12659:"HTML Tags" 12094:. Microsoft 11639:Acronym tag 10957:BlueGriffon 10922:quirks mode 10894:"extension 10821:XML comment 10750:<noembed 10706:white-space 10644:Scrolldelay 10603:<marquee 10314:existed in 10220:existed in 10148:<listing 9996:Content of 9747: /> 9679:. However, 9603:HTML Tables 9561:HTML Tables 9523:HTML Tables 9463:<caption 9447:HTML Tables 9409:HTML Tables 9352:</td> 9310:</th> 9272:</tr> 9216:elements.) 9201:HTML Tables 8980: value 8785:existed in 8742: /> 8739:<isindex 8579:file select 8539:="password" 8387:="checkbox" 8355: /> 8194:server-side 8187:Form (HTML) 8033: /> 7929:existed in 7921:NCSA Mosaic 7866: /> 7743:<map> 7731: /> 7686:Java applet 7600: /> 7469:subscripted 7305:</rt> 7272:</rp> 7239:</rb> 7217:block-quote 7122:<del> 7118:<del> 7113:<del> 7109:<ins> 7081:<del> 6862: /> 6738:font-family 6331:for output. 6316:<var> 6310:<kbd> 6293:existed in 6272:font-family 6256:Fixed-width 6245:</tt> 6054:<del> 5897:existed in 5804:existed in 5786:, however, 5704:existed in 5690:, however, 5663:font-weight 5582:existed in 5574:var example 5539:existed in 5496:existed in 5488:kbd example 5453:existed in 5352:existed in 5306:existed in 5291:</em> 5264:existed in 5154:<acronym 5047:existed in 4865:example.com 4785:anchor text 4656:<div> 4640:<section 4620:existed in 4605:<sup> 4593:<big> 4563:font-family 4551:white-space 4539:white-space 4411:existed in 4300: /> 4057:<div> 4012:existed in 3895:<article 3875:existed in 3856:<address 3813:existed in 3757:existed in 3737:</li> 3710:existed in 3623:</ul> 3596:existed in 3568:lower-roman 3558:upper-roman 3548:lower-alpha 3538:upper-alpha 3464:</ol> 3437:existed in 3425:</dd> 3398:existed in 3386:</dt> 3359:existed in 3335:</dl> 3307:, and were 3257:</h6> 3241:</h5> 3225:</h4> 3209:</h3> 3193:</h2> 3177:</h1> 3150:existed in 3019:Existed in 2763:Dublin Core 2594: /> 2571:existed in 2453: /> 2419: /> 2416:<isindex 2361: /> 2308: /> 2036:style sheet 2008:Ruby markup 1863:user agents 1857:During the 1686:style sheet 1315:When using 291:Comparisons 278:Web storage 273:Quirks mode 212:Font family 163:HTML editor 12963:Categories 12943:attributes 12919:2018-07-26 12897:2018-07-26 12874:2018-07-26 12835:2018-07-26 12812:CSS 1: 12804:2009-03-20 12769:2009-03-22 12721:2009-04-18 12696:2009-03-28 12664:2009-03-28 12621:2018-07-26 12587:2018-07-26 12556:2018-07-26 12533:2018-07-26 12509:2009-03-24 12476:2009-03-24 12449:2009-03-27 12422:2009-03-24 12339:2010-07-20 12263:2011-09-05 12244:2012-03-26 12221:2008-12-20 12200:2011-09-05 12180:2008-12-20 12143:2012-03-26 12121:2012-03-26 12098:2009-07-22 11793:29 October 11773:2012-03-26 11748:2012-03-26 11726:2012-03-26 11704:2012-03-26 11682:2012-03-26 11660:2012-03-26 11641:, acronym. 11622:"HTML 5.2" 11554:2012-03-26 11406:2009-03-25 11098:References 10896:one"--> 10892:<!--for 10880:Xend--> 10875:Xend--> 10864:Xend--> 10743:and later. 10733:deprecated 10676:and later. 10666:deprecated 10596:and later. 10586:deprecated 10582:Netscape 4 10560:VISIBILITY 10470:deprecated 10336:and later. 10322:deprecated 10295:<nextid 10274:Deprecated 10228:deprecated 10173:Deprecated 9831:<iframe 9779:Frameset, 9733:Frameset, 9362:data cell. 9149: rows 9114: name 9110:<select 9052:<output 8976:<option 8894:<legend 8822:<keygen 8801:deprecated 8777:plus signs 8719: type 8706: type 8693: type 8676: type 8663: type 8650: type 8629: type 8608: type 8587: type 8570: type 8537: type 8520: type 8512:max-length 8495: type 8478: type 8472:attribute. 8457: type 8440: type 8423: type 8404: type 8385: type 8295:A list of 8253:<button 8237:attribute. 8225:Creates a 8160:HTML video 8075:<source 8051:. It uses 7982:<object 7935:, and was 7819:JavaScript 7798:<canvas 7776:HTML audio 7741:area in a 7704:deprecated 7667:<applet 7397:<script 7180:blockquote 7170:</q> 7089:underlined 6964:, and was 6783:deprecated 6767:font stack 6458:text with 6421:green text 6299:, and was 6217:deprecated 6163:<strike 6064:deprecated 6026:</s> 5913:deprecated 5843:underlined 5831:</u> 5810:, and was 5792:<em> 5755:font-style 5731:</i> 5710:, and was 5643:</b> 5588:, and was 5572:Variable ( 5545:, and was 5502:, and was 5459:, and was 5358:, and was 5340:importance 5326:<strong 5312:, and was 5072:<em> 5053:, and was 4764:</a> 4675:<script 4626:, and was 4427:deprecated 4417:, and was 4403:<ul> 4268:<header 4239:<footer 4173:<figure 4072:deprecated 4037:<center 4018:, and was 4010:BLOCKQUOTE 4006:) element. 3881:, and was 3829:deprecated 3819:, and was 3763:, and was 3716:, and was 3602:, and was 3443:, and was 3404:, and was 3365:, and was 3156:, and was 3138:</p> 3123:Basic text 3025:, and was 2817:<script 2784:<object 2663:http-equiv 2652:web server 2577:, and was 2395:deprecated 2377:Deprecated 2375:elements. 2016:deprecated 1997:standard, 1953:documents; 1919:validating 1910:deprecated 1725:Attributes 1613:and other 1433:synecdoche 1348:P. Sherman 1282:P. Sherman 1267:<br> 375:hyperlinks 222:JavaScript 217:Web colors 158:HTML frame 12969:HTML tags 12849:Bos, Bert 12822:Bos, Bert 12783:Bray, Tim 12295:August 7, 12057:W3Schools 11547:HTML 4.01 11483:16 August 11444:HTML 4.01 11432:HTML 4.01 11420:HTML 4.01 11379:HTML 4.01 11327:XHTML 1.1 11275:XHTML 1.0 10674:HTML 4.01 10632:Alternate 10594:HTML 4.01 10487:<layer 10397:<blink 10317:HTML Tags 10223:HTML Tags 10212:plaintext 10134:HTML Tags 9892:attribute 9884:in HTML5. 9825:in HTML5. 9811:elements. 9783:in HTML5. 9744:<frame 9737:in HTML5. 9577:<tfoot 9539:<tbody 9501:<thead 9223:<table 8927:<meter 8859: for 8855:<label 8788:HTML Tags 8769:ampersand 8721:="hidden" 8678:="number" 8554:plaintext 8522:="search" 8442:="submit" 8425:="button" 8352:<input 8145:<video 8116:<track 8100:elements. 8059:elements. 8030:<param 7964:image map 7885:attribute 7837:<embed 7761:<audio 7739:focusable 7684:Embeds a 7651:July 2023 7410:Places a 7221:q.lengthy 7186:<q> 7145:like this 7085:<s> 6641:font-size 6278:monospace 6124:font-size 6050:<s> 5968:font-size 5941:<small 5889:<u> 5880:<u> 5868:HTML 4.01 5857:underline 5788:<i> 5780:HTML 4.01 5692:<b> 5684:HTML 4.01 5620:<u> 5616:<s> 5608:XHTML 2.0 5103:Marks an 5050:HTML Tags 5014:link text 4901:></ 4793:hyperlink 4787:) or the 4569:monospace 4535:ASCII art 4414:HTML Tags 4003:<q> 3930:<aside 3878:HTML Tags 3816:HTML Tags 3760:HTML Tags 3713:HTML Tags 3440:HTML Tags 3401:HTML Tags 3362:HTML Tags 3304:HTML Tags 3153:HTML Tags 3075:box model 3022:HTML Tags 2995:engines). 2982:title bar 2956:<title 2865:CSS style 2850:<style 2340:HTML Tags 2062:<i> 2058:<b> 2011:module.) 1999:XHTML 1.1 1930:XHTML 1.0 1926:HTML 4.01 1889:XHTML 1.0 1872:In 1998, 1821:<input 1762:attribute 1751:attribute 1741:attribute 1557:</ 1531:start tag 1508:</ 1474:start tag 1333:beginning 1227:<p> 1170:⏞ 1135:⏞ 1081:⏞ 977:⏞ 887:⏟ 782:⏟ 652:box model 371:semantics 261:Validator 12939:elements 12595:HTML 5.1 12564:HTML 5.2 12487:HTML 5.2 12217:. WebAim 12039:Archived 11588:7 August 11315:WHATWGLS 11194:22 March 11009:See also 10889:<span 10796:Comments 10791:element. 10741:HTML 2.0 10683:<nobr 10478:HTML 2.0 10334:HTML 3.2 10326:HTML 2.0 10282:obsolete 10278:HTML 3.2 10268:HTML 2.0 10240:HTML 4.0 10232:HTML 2.0 10181:obsolete 10177:HTML 3.2 10167:HTML 2.0 10138:HTML 2.0 10070:longdesc 9981:longdesc 9954:longdesc 9950:longdesc 9934:longdesc 9903:longdesc 9890:longdesc 9878:HTML 4.0 9869:element. 9823:obsolete 9819:HTML 4.0 9781:obsolete 9777:HTML 4.0 9769:element. 9735:obsolete 9731:HTML 4.0 9635:Facebook 9611:HTML 4.0 9569:HTML 4.0 9531:HTML 4.0 9493:HTML 3.2 9455:HTML 4.0 9417:HTML 4.0 9375:HTML 3.2 9337:HTML 3.2 9295:HTML 3.2 9257:HTML 3.2 9183:HTML 2.0 9137:HTML 2.0 9044:HTML 4.0 9007:HTML 2.0 8919:HTML 4.0 8886:HTML 4.0 8797:HTML 2.0 8763:de facto 8708:="color" 8695:="range" 8610:="email" 8480:="reset" 8459:="image" 8406:="radio" 8395:checkbox 8372:HTML 2.0 8344:HTML 4.0 8274:HTML 4.0 8245:HTML 2.0 8206:<form 8067:HTML 3.2 8022:HTML 4.0 7974:HTML 3.2 7941:HTML 2.0 7753:HTML 3.2 7728:<area 7700:HTML 3.2 7564:<time 7527:HTML 3.2 7429:HTML 3.2 7364:<ruby 7282:support. 7207:HTML 4.0 7130:<mark 7102:HTML 4.0 7058:HTML 4.0 7001:<data 6970:HTML 2.0 6942:<cite 6934:HTML 4.0 6876:HTML 2.0 6844:HTML 4.0 6809:<span 6779:HTML 3.2 6534:creates 6497:creates 6456:creates 6419:creates 6338:<font 6305:HTML 2.0 6264:teletype 6213:HTML 3.2 6146:HTML 3.2 6011:HTML 3.2 6003:element. 5919:and was 5911:but was 5909:HTML 3.2 5816:HTML 2.0 5778:, under 5776:emphasis 5770:. Using 5716:HTML 2.0 5655:boldface 5594:HTML 2.0 5551:HTML 2.0 5516:<samp 5508:HTML 2.0 5465:HTML 2.0 5430:<code 5364:HTML 2.0 5318:HTML 2.0 5298:Emphasis 5276:HTML 3.2 5225:HTML 4.0 5145:HTML 4.0 5090:<abbr 5059:HTML 2.0 5038:alt text 4876:>< 4715:HTML 3.2 4632:HTML 2.0 4505:HTML 4.0 4423:HTML 2.0 4388:<menu 4380:HTML 5.1 4359:<main 4351:HTML 4.0 4318:HTML 2.0 4223:element. 4165:HTML 3.2 4117:HTML 4.0 4076:HTML 4.0 4068:HTML 3.2 4024:HTML 2.0 3887:HTML 2.0 3825:HTML 2.0 3769:HTML 2.0 3751:) lists. 3722:HTML 2.0 3608:HTML 2.0 3449:HTML 2.0 3410:HTML 2.0 3371:HTML 2.0 3344:Glossary 3313:HTML 2.0 3162:HTML 2.0 3031:HTML 2.0 2986:task bar 2948:HTML 3.2 2842:HTML 3.2 2809:HTML 4.0 2776:HTML 2.0 2609:metadata 2591:<meta 2583:HTML 2.0 2461:previous 2450:<link 2391:HTML 3.2 2349:HTML 2.0 2316:base URL 2305:<base 2290:HTML 2.0 2258:<body 2250:HTML 5.0 2217:<head 2209:HTML 2.0 2177:<html 2047:graphics 1980:HTML 3.2 1976:HTML 2.0 1965:obsolete 1951:frameset 1947:Frameset 1830:checked= 1801:checkbox 1698:<link 1219:HTML tag 962:″ 847:″ 719:Overview 701:>< 678:%inline; 631:, or as 593:>< 577:>< 499:possible 479:—  445:—  385:Concepts 12974:Web 1.0 11823:26 July 11434:§14.3.2 11346:. 2013. 11303:XML 1.0 11287:XML 1.0 10981:comment 10926:doctype 10918:doctype 10839:--!> 10813:comment 10737:invalid 10670:invalid 10654:marquee 10590:invalid 10536:Z-INDEX 10474:invalid 10466:Firefox 10330:invalid 10249:<xmp 10236:invalid 10049:Example 9960:Example 9882:allowed 9647:AdSense 9643:plugins 9639:Twitter 9594:. Like 9425:<col 9242:summary 8809:invalid 8783:ISINDEX 8665:="time" 8652:="date" 8572:="file" 8497:="text" 8451:button. 7949:<map 7897:tooltip 7863:<img 7712:invalid 7641:updated 7597:<wbr 7453:<sup 7437:<sub 7331:<rtc 7066:<ins 7030:<del 6913:<bdo 6884:<bdi 6791:invalid 6462:#114499 6363:>... 6225:invalid 6097:<big 6072:invalid 5974:smaller 5960:smaller 5921:invalid 5559:<var 5473:<kbd 5245:<dfn 5212:acronym 5193:acronym 5185:acronym 5082:General 5034:tooltip 4692:with a 4513:<pre 4451:<nav 4435:invalid 4326:<ins 4125:<div 4092:<del 3873:ADDRESS 3837:invalid 3778:<dir 3578:decimal 3090:padding 3083:content 2906:@import 2904:, with 2728:content 2704:content 2672:content 2434:isindex 2403:invalid 2043:scripts 1915:invalid 1804:checked 1782:checked 1778:Boolean 1621:(for a 1553:end tag 1546:content 1500:end tag 1493:content 1331:at the 1323:at the 1257:require 713:%block; 674:%block; 657:display 646:vs. box 644:%block; 585:Para 2 569:Para 1 546:Para 2 536:Para 1 460:omitted 415:markup. 178:Unicode 139:marquee 80:article 12915:. 2018 12631:, and 12616:WHATWG 12289:WHATWG 12059:about 11579:  11317:. § 15 11189:WHATWG 11071:object 10949:--> 10943:<-- 10835:--> 10785:object 10712:nowrap 10636:Scroll 10548:HEIGHT 9863:srcdoc 9675:and a 9667:and a 9656:and a 9618:Frames 9345:<td 9303:<th 9265:<tr 9214:inline 9190:Tables 9116:="xyz" 8956:, and 8727:hidden 8631:="url" 8589:="tel" 8550:masked 8506:. The 8449:submit 8297:option 8235:action 8229:. The 8212:="url" 8012:applet 7905:Safari 7899:if no 7412:script 7298:<rt 7265:<rp 7232:<rb 7189:should 6980:forked 6859:<br 6836:calls. 6601:makes 6258:font ( 6238:<tt 6209:STRIKE 6130:larger 6116:bigger 6048:, the 6034:HTML 4 5987:, the 5956:HTML 4 5903:, was 5878:, the 5839:HTML 4 5761:italic 5743:italic 5739:HTML 4 5678:. The 5651:HTML 4 5622:, and 5350:STRONG 5284:<em 4789:target 4781:origin 4777:anchor 4742:Anchor 4608:, and 4495:script 4341:inline 4297:<hr 4152:calls. 4107:inline 3730:<li 3694:circle 3690:square 3616:<ul 3457:<ol 3418:<dd 3379:<dt 3353:data". 3328:<dl 3286:tags, 3250:<h6 3234:<h5 3218:<h4 3202:<h3 3186:<h2 3170:<h1 3105:margin 3098:border 3048:inline 2923:import 2737:scheme 2708:scheme 2194:of an 2079:, the 1957:Strict 1865:(e.g. 1770:). In 1579:text. 1444:HTML 4 1368:Sydney 1302:Sydney 1046:  1040:  1031:  999:  939:  755:  724:Syntax 601:Para 3 556:Para 3 356:WHATWG 268:WHATWG 244:WebGPU 90:canvas 12949:HTML5 12176:. W3C 11860:, at 11842:, at 11769:, W3C 11550:, W3C 11509:2 May 11422:§12.3 11381:§14.1 11026:Notes 10996:style 10993:</ 10969:style 10847:-> 10773:embed 10640:slide 10574:layer 10552:BELOW 10544:WIDTH 10540:ABOVE 10528:PAGEY 10524:PAGEX 10454:blink 10436:blink 10387:valid 10286:HTML5 10185:HTML5 10111:</ 10098:title 10079:/> 10024:</ 10011:/> 9914:, or 9400:in a 9322:aural 9210:block 9102:HTML5 9073:HTML5 9036:list. 8999:list. 8968:HTML5 8942:value 8876:radio 8861:="id" 8847:HTML5 8562:HTTPS 8560:like 8307:HTML5 8181:Forms 8174:HTML5 8137:HTML5 8108:HTML5 8005:Flash 7901:title 7874:image 7829:HTML5 7790:HTML5 7615:HTML5 7589:HTML5 7556:HTML5 7505:super 7466:Mark 7416:Note: 7389:HTML5 7356:HTML5 7323:HTML5 7290:HTML5 7257:HTML5 7213:Note: 7163:<q 7155:HTML5 7107:Both 7022:HTML5 6976:Note: 6905:HTML5 6756:serif 6750:Times 6695:color 6677:color 6651:units 6592:</ 6559:</ 6525:</ 6488:</ 6447:</ 6434:color 6410:</ 6397:color 6376:color 6365:</ 6154:HTML5 6084:HTML5 6046:HTML5 6044:. In 6019:<s 5999:aside 5995:aside 5985:HTML5 5933:HTML5 5885:HTML5 5876:HTML5 5874:. In 5872:HTML5 5824:<u 5784:HTML5 5724:<i 5688:HTML5 5686:. In 5636:<b 5628:HTML5 5612:HTML5 5233:HTML5 5209:</ 5196:title 5129:</ 5127:abbr. 5116:title 5030:title 5016:</ 5003:title 4983:title 4969:</ 4935:</ 4895:</ 4851:</ 4783:(the 4772:link. 4757:<a 4702:Note: 4667:HTML5 4472:HTML5 4443:HTML5 4405:list. 4289:HTML5 4260:HTML5 4231:HTML5 4198:HTML5 4084:HTML5 3951:HTML5 3922:HTML5 3692:, or 3320:Lists 3131:<p 3044:block 2975:XHTML 2935:style 2932:</ 2914:style 2894:style 2891:</ 2873:style 2746:/> 2681:/> 2629:XHTML 2507:title 2442:Forms 2272:(See 2232:(See 2141:style 2077:XHTML 1995:XHTML 1878:XHTML 1836:/> 1824:type= 1814:XHTML 1792:input 1766:value 1755:value 1745:value 1736:value 1719:/> 1713:type= 1707:href= 1691:slash 1680:This 1611:XHTML 1599:XHTML 1577:plain 1565:XHTML 1504:slash 1420:</ 1418:abbr. 1407:title 1394:title 1370:</ 1366:/> 1356:/> 1317:XHTML 1304:</ 1244:</ 663:block 633:HTML5 629:XHTML 609:HTML5 605:alone 587:</ 571:</ 516:</ 465:NOTE: 454:and: 367:nodes 249:WebXR 239:WebGL 234:Web3D 227:WebCL 134:blink 107:Basic 102:XHTML 95:video 85:audio 75:HTML5 12941:and 12764:1942 12747:IETF 12417:1866 12400:IETF 12297:2022 12091:MSDN 11825:2018 11795:2014 11590:2022 11577:ISBN 11511:2015 11485:2015 11458:§1.1 11305:§5.1 11277:§4.2 11196:2019 11074:> 11068:< 10999:> 10984:tags 10972:> 10966:< 10955:The 10935:and 10852:< 10845:and 10843:> 10829:< 10788:> 10782:< 10776:> 10770:< 10753:> 10728:> 10725:nobr 10722:< 10686:> 10657:> 10651:< 10638:and 10606:> 10577:> 10571:< 10564:CLIP 10562:and 10556:CLIP 10516:LEFT 10490:> 10457:> 10451:< 10400:> 10298:> 10252:> 10197:> 10151:> 10117:> 10107:> 10089:href 10083:< 10055:< 10032:... 10030:> 10020:> 10014:< 10005:< 9990:> 9966:< 9898:HTML 9834:> 9793:> 9718:cols 9716:and 9714:rows 9694:> 9637:and 9580:> 9542:> 9504:> 9466:> 9428:> 9386:> 9348:> 9306:> 9268:> 9226:> 9212:nor 9170:rows 9166:cols 9154:> 9151:="8" 9119:> 9084:> 9055:> 9018:> 8985:> 8982:="x" 8954:high 8930:> 8897:> 8864:> 8825:> 8771:and 8685:text 8642:URLs 8640:for 8638:text 8619:for 8617:text 8598:for 8596:text 8546:text 8529:text 8508:size 8318:> 8285:> 8256:> 8227:form 8215:> 8148:> 8119:> 8096:and 8078:> 8009:Java 8007:, a 8001:MIME 7997:type 7985:> 7952:> 7907:and 7840:> 7801:> 7764:> 7670:> 7567:> 7538:> 7493:and 7456:> 7440:> 7400:> 7367:> 7334:> 7301:> 7268:> 7235:> 7193:cite 7182:> 7178:< 7166:> 7133:> 7111:and 7069:> 7033:> 7004:> 6945:> 6916:> 6887:> 6812:> 6801:Span 6729:> 6720:face 6717:font 6714:< 6686:> 6674:font 6671:< 6632:> 6619:size 6616:font 6613:< 6603:text 6598:> 6595:font 6590:text 6588:> 6579:face 6576:font 6573:< 6565:> 6562:font 6557:text 6555:> 6546:size 6543:font 6540:< 6531:> 6528:font 6523:text 6521:> 6512:size 6509:font 6506:< 6499:text 6494:> 6491:font 6486:text 6484:> 6475:size 6472:font 6469:< 6453:> 6450:font 6445:text 6443:> 6431:font 6428:< 6416:> 6413:font 6408:text 6406:> 6394:font 6391:< 6384:size 6380:face 6371:> 6368:font 6360:font 6357:< 6341:> 6241:> 6166:> 6100:> 6062:was 6022:> 6001:> 5993:< 5944:> 5827:> 5727:> 5669:bold 5639:> 5562:> 5537:SAMP 5519:> 5476:> 5451:CODE 5433:> 5420:> 5417:samp 5414:< 5408:> 5402:< 5396:> 5390:< 5384:> 5381:code 5378:< 5329:> 5287:> 5248:> 5239:tag. 5237:abbr 5215:> 5207:HTML 5205:> 5190:< 5180:> 5177:abbr 5174:< 5157:> 5135:> 5132:abbr 5125:> 5113:abbr 5110:< 5093:> 5074:and 5022:> 5012:> 4994:href 4988:< 4975:> 4965:> 4956:href 4950:< 4941:> 4931:> 4922:href 4916:< 4907:> 4891:> 4882:name 4870:< 4857:> 4847:> 4838:name 4832:< 4808:name 4800:href 4760:> 4735:> 4732:body 4729:< 4678:> 4643:> 4516:> 4483:> 4454:> 4409:MENU 4391:> 4362:> 4329:> 4271:> 4242:> 4209:> 4176:> 4128:> 4095:> 4040:> 3985:cite 3962:> 3933:> 3898:> 3859:> 3804:> 3798:< 3781:> 3733:> 3702:none 3698:Only 3686:disc 3648:> 3639:type 3633:< 3619:> 3584:none 3493:> 3484:type 3478:< 3472:type 3460:> 3421:> 3382:> 3331:> 3253:> 3237:> 3221:> 3205:> 3189:> 3173:> 3134:> 3113:DTDs 3103:The 3096:The 3088:The 3081:The 3008:The 2973:and 2971:HTML 2959:> 2938:> 2917:> 2911:< 2897:> 2885:> 2876:type 2870:< 2853:> 2820:> 2787:> 2749:the 2719:name 2716:meta 2713:< 2700:name 2660:meta 2657:< 2648:HTTP 2569:LINK 2550:> 2541:href 2529:link 2526:< 2516:> 2498:href 2489:type 2477:link 2474:< 2465:next 2463:and 2437:> 2431:< 2335:BASE 2320:href 2261:> 2220:> 2196:HTML 2190:The 2180:> 2139:The 2118:and 2110:and 2094:and 2060:and 1897:HTML 1848:IETF 1807:> 1795:type 1789:< 1701:rel= 1675:> 1666:type 1657:href 1645:link 1642:< 1603:< 1595:> 1591:< 1561:> 1539:> 1535:< 1512:> 1482:> 1478:< 1456:HTML 1426:> 1423:abbr 1416:> 1404:abbr 1401:< 1376:> 1360:< 1350:< 1346:> 1340:< 1310:> 1300:> 1294:< 1290:> 1284:< 1280:> 1274:< 1250:> 1240:> 1234:< 1130:> 1117:< 969:> 748:< 711:are 707:> 695:< 676:and 599:> 583:> 567:> 561:< 554:> 548:< 544:> 538:< 534:> 528:< 522:> 510:> 504:< 491:SGML 430:Tags 363:tree 348:HTML 124:meta 61:HTML 34:and 12913:W3C 12891:W3C 12869:W3C 12830:W3C 12799:W3C 12761:RFC 12751:doi 12582:W3C 12551:W3C 12528:W3C 12503:W3C 12483:4.0 12471:W3C 12444:W3C 12414:RFC 12404:doi 11817:W3C 11626:W3C 11608:W3C 11530:W3C 11456:CSS 11446:§18 11401:W3C 11366:W3C 11344:W3C 11243:W3C 11218:W3C 11162:W3C 11144:W3C 11122:W3C 11088:IRI 10990:... 10975:... 10946:... 10831:!-- 10819:or 10779:or 10755:... 10739:in 10735:or 10688:... 10672:in 10668:or 10608:... 10592:in 10588:or 10532:SRC 10520:TOP 10492:... 10476:in 10472:or 10402:... 10378:UwU 10369:UuU 10332:in 10324:in 10284:in 10276:in 10254:... 10238:in 10230:in 10183:in 10175:in 10153:... 10061:src 10058:img 9972:src 9969:img 9928:not 9920:URL 9896:In 9876:in 9855:src 9836:... 9817:in 9795:... 9775:in 9763:src 9729:in 9696:... 9609:in 9582:... 9567:in 9544:... 9529:in 9506:... 9491:in 9468:... 9453:in 9430:... 9415:in 9388:... 9373:in 9350:... 9335:in 9308:... 9293:in 9270:... 9255:in 9228:... 9181:in 9156:... 9135:in 9121:... 9100:in 9086:... 9071:in 9057:... 9042:in 9020:... 9005:in 8987:... 8966:in 8958:max 8950:low 8946:min 8932:... 8917:in 8899:... 8884:in 8866:... 8845:in 8827:... 8811:in 8803:in 8795:in 8470:src 8464:An 8370:in 8342:in 8320:... 8305:in 8287:... 8272:in 8258:... 8243:in 8217:... 8172:in 8164:src 8150:... 8135:in 8121:... 8106:in 8090:src 8080:... 8065:in 8020:in 7987:... 7972:in 7954:... 7939:in 7927:IMG 7889:alt 7883:alt 7878:src 7842:... 7827:in 7803:... 7788:in 7780:src 7766:... 7751:in 7714:in 7706:in 7698:in 7672:... 7613:in 7587:in 7569:... 7554:in 7540:... 7525:in 7484:sub 7458:... 7442:... 7427:in 7402:... 7387:in 7369:... 7354:in 7336:... 7321:in 7303:... 7288:in 7270:... 7255:in 7237:... 7205:in 7197:URI 7168:... 7153:in 7135:... 7100:in 7083:or 7071:... 7056:in 7035:... 7020:in 7006:... 6988:W3C 6968:in 6947:... 6932:in 6918:... 6903:in 6889:... 6874:in 6842:in 6834:DOM 6832:or 6814:... 6793:in 6785:in 6777:in 6701:red 6343:... 6303:in 6243:... 6227:in 6219:in 6168:... 6152:in 6144:in 6102:... 6082:in 6074:in 6066:in 6032:In 6024:... 6009:in 5983:In 5954:In 5946:... 5931:in 5923:in 5915:in 5907:in 5837:In 5829:... 5814:in 5747:CSS 5737:In 5729:... 5714:in 5649:In 5641:... 5592:in 5580:VAR 5564:... 5549:in 5521:... 5506:in 5494:KBD 5478:... 5463:in 5435:... 5423:). 5405:kbd 5393:var 5362:in 5331:... 5316:in 5289:... 5274:in 5262:DFN 5250:... 5231:in 5223:in 5159:... 5143:in 5095:... 5057:in 4849:... 4810:or 4804:URL 4762:... 4713:in 4694:src 4680:... 4665:in 4645:... 4630:in 4618:PRE 4557:pre 4518:... 4503:in 4485:... 4470:in 4456:... 4437:in 4429:in 4421:in 4393:... 4378:in 4364:... 4349:in 4331:... 4316:in 4287:in 4273:... 4258:in 4244:... 4229:in 4211:... 4196:in 4178:... 4163:in 4150:DOM 4148:or 4130:... 4115:in 4097:... 4082:in 4074:in 4066:in 4042:... 4022:in 3964:... 3949:in 3935:... 3920:in 3900:... 3885:in 3861:... 3839:in 3831:in 3823:in 3811:DIR 3783:... 3767:in 3735:... 3720:in 3681:foo 3668:foo 3621:... 3606:in 3588:CJK 3526:foo 3513:foo 3462:... 3447:in 3423:... 3408:in 3384:... 3369:in 3333:... 3311:in 3296:not 3292:CSS 3255:... 3239:... 3223:... 3207:... 3191:... 3175:... 3160:in 3136:... 3109:CSS 3046:or 3029:in 2961:... 2946:in 2926:url 2902:CSS 2888:... 2855:... 2840:in 2832:src 2822:... 2807:in 2789:... 2774:in 2759:bar 2755:foo 2690:bar 2686:foo 2581:in 2532:rel 2480:rel 2405:in 2397:in 2389:in 2347:in 2288:in 2248:in 2222:... 2207:in 2182:... 2132:or 2081:SVG 2071:or 2032:CSS 1934:DTD 1924:In 1885:XML 1874:XML 1852:W3C 1772:XML 1759:or 1648:rel 1615:XML 1605:tag 1593:tag 1559:tag 1551:an 1537:tag 1510:tag 1498:an 1480:tag 1437:tag 1325:end 709:... 687:CSS 621:XML 342:An 256:W3C 205:CSS 12965:: 12911:. 12889:. 12859:; 12855:; 12851:; 12820:; 12797:. 12789:; 12785:; 12759:. 12749:. 12745:. 12685:; 12566:.) 12489:). 12469:. 12442:. 12412:. 12402:. 12398:. 12388:; 12356:. 12323:^ 12313:. 12287:. 12283:. 12272:^ 12159:. 12088:. 12021:. 12003:. 11985:. 11967:. 11949:. 11931:. 11913:. 11895:. 11877:. 11815:. 11811:. 11756:^ 11624:. 11606:. 11527:. 11501:. 11475:. 11471:. 11399:. 11395:. 11364:. 11360:. 11342:. 11329:§A 11260:. 11241:. 11237:. 11226:^ 11216:. 11212:. 11187:. 11170:^ 11160:. 11142:. 11138:. 11120:. 11116:. 11105:^ 10902:). 10854:!- 10811:A 10715:;} 10664:; 10642:. 10634:, 10584:; 10558:, 10554:, 10550:, 10546:, 10542:, 10538:, 10534:, 10530:, 10526:, 10522:, 10518:, 10514:, 10512:ID 10468:; 10328:; 10280:; 10234:; 10226:; 10179:; 10119:] 10008:br 10000:: 9956:. 9910:, 9900:, 9663:a 9661:or 9605:; 9563:; 9525:; 9487:; 9449:; 9411:; 9369:; 9358:A 9331:; 9316:A 9289:; 9251:; 8952:, 8948:, 8807:; 8799:; 8791:; 8577:A 8502:A 8485:A 8447:A 8411:A 8392:A 7710:; 7702:; 7521:; 7223:: 7091:: 7047:: 6789:; 6781:; 6291:TT 6223:; 6215:; 6148:; 6078:. 5927:. 5841:, 5749:: 5618:, 5576:). 5533:). 5490:). 5304:EM 5187:: 4904:h2 4873:h2 4827:id 4812:id 4602:, 4596:, 4590:, 4584:, 4433:; 4425:; 4306:A 4159:; 4078:; 4070:; 3997:. 3979:A 3835:; 3827:; 3801:ul 3755:LI 3749:ul 3745:ol 3708:UL 3696:. 3656:ul 3636:ul 3594:OL 3576:; 3501:ol 3481:ol 3435:DD 3396:DT 3357:DL 3277:h6 3273:h3 3269:h2 3265:h1 3001:' 2692:. 2639:. 2401:; 2393:; 2343:; 1936:: 1928:/ 1854:. 1764:=" 1753:=' 1529:a 1506:: 1472:a 1363:br 1353:br 1297:br 1287:br 704:li 698:ul 462:. 407:: 12922:. 12900:. 12877:. 12838:. 12807:. 12772:. 12753:: 12724:. 12699:. 12667:. 12624:. 12597:. 12590:. 12559:. 12536:. 12512:. 12479:. 12452:. 12425:. 12406:: 12360:. 12342:. 12299:. 12266:. 12224:. 12203:. 12183:. 12101:. 12025:. 12007:. 11989:. 11971:. 11953:. 11935:. 11917:. 11899:. 11881:. 11864:. 11846:. 11827:. 11797:. 11628:. 11610:. 11592:. 11535:. 11513:. 11487:. 11409:. 11264:. 11198:. 10987:} 10978:{ 10961:x 10952:. 10709:: 10703:{ 10566:. 10439:} 10433:: 10427:{ 10288:. 10242:. 10214:. 10187:. 10114:a 10109:D 10101:= 10092:= 10086:a 10081:[ 10073:= 10064:= 10027:p 10017:p 9984:= 9975:= 9723:. 9556:. 9480:. 9442:. 9404:. 9282:. 9104:. 9075:. 8970:. 8960:. 8911:. 8815:. 8779:. 8644:. 8623:. 8602:. 8309:. 8176:. 8139:. 8110:. 7966:. 7831:. 7792:. 7745:. 7653:) 7649:( 7617:. 7591:. 7558:. 7511:} 7508:; 7502:: 7496:{ 7490:} 7487:; 7481:: 7475:{ 7391:. 7358:. 7348:. 7325:. 7315:. 7292:. 7259:. 7249:. 7199:. 7157:. 7024:. 6907:. 6762:} 6759:; 6753:, 6747:, 6741:: 6735:{ 6723:= 6707:} 6704:; 6698:: 6692:{ 6680:= 6664:Y 6660:N 6655:} 6648:Y 6644:: 6638:{ 6629:" 6627:N 6625:" 6622:= 6582:= 6549:= 6515:= 6478:= 6464:. 6437:= 6423:. 6400:= 6287:) 6284:} 6281:; 6275:: 6269:{ 6231:. 6205:) 6202:} 6199:; 6193:: 6187:{ 6156:. 6136:} 6133:; 6127:: 6121:{ 6090:. 6060:S 5980:} 5977:; 5971:: 5965:{ 5935:. 5895:U 5863:} 5860:; 5854:: 5848:{ 5802:I 5767:} 5764:; 5758:: 5752:{ 5702:B 5675:} 5672:; 5666:: 5660:{ 5199:= 5119:= 5061:; 5045:A 5025:. 5019:a 5006:= 4997:= 4991:a 4978:. 4972:a 4959:= 4953:a 4944:; 4938:a 4925:= 4919:a 4910:. 4898:a 4885:= 4879:a 4854:a 4841:= 4835:a 4795:. 4750:. 4669:. 4614:. 4575:} 4572:; 4566:: 4560:; 4554:: 4548:{ 4474:. 4382:. 4343:. 4291:. 4262:. 4233:. 4200:. 4190:. 4109:. 4086:. 4000:( 3953:. 3924:. 3843:. 3807:. 3674:} 3671:; 3665:: 3659:{ 3642:= 3574:1 3564:i 3554:I 3544:a 3534:A 3519:} 3516:; 3510:: 3504:{ 3487:= 3346:. 3288:n 3283:n 3281:h 3148:P 2929:; 2920:@ 2879:= 2768:. 2740:= 2731:= 2722:= 2675:= 2666:= 2544:= 2535:= 2510:= 2501:= 2492:= 2483:= 2444:. 2409:. 2383:. 1891:( 1798:= 1768:" 1757:' 1743:= 1669:= 1660:= 1651:= 1567:. 1514:. 1488:; 1476:( 1410:= 1373:p 1343:p 1329:/ 1321:/ 1307:p 1277:p 1247:p 1237:p 1195:t 1192:n 1189:e 1186:m 1183:e 1180:l 1177:E 1161:g 1158:a 1155:t 1150:d 1147:n 1144:E 1126:p 1122:/ 1106:t 1103:n 1100:e 1097:t 1094:n 1091:o 1088:C 1076:. 1073:h 1070:p 1067:a 1064:r 1061:g 1058:a 1055:r 1052:a 1049:p 1043:a 1037:s 1034:i 1028:s 1025:i 1022:h 1019:T 1008:g 1005:a 1002:t 996:t 993:r 990:a 987:t 984:S 954:e 951:u 948:l 945:a 942:v 936:e 933:t 930:u 927:b 924:i 921:r 918:t 915:t 912:A 906:r 903:t 900:t 897:A 883:h 880:p 877:a 874:r 871:g 868:a 865:r 862:a 859:p 844:= 831:e 828:m 825:a 822:n 817:e 814:t 811:u 808:b 805:i 802:r 799:t 796:t 793:A 778:s 775:s 772:a 769:l 766:c 752:p 666:; 660:: 596:p 590:p 580:p 574:p 564:p 551:p 541:p 531:p 519:p 507:p 331:e 324:t 317:v 52:. 45:. 38:. 20:)

Index

Description list
Help:Wikitext
Help:HTML in wikitext
Nitrosyl bromide
OpenType § Color fonts
HTML
Dynamic HTML
HTML5
article
audio
canvas
video
XHTML
Basic
Mobile Profile
HTML element
meta
div and span
blink
marquee
HTML attribute
alt attribute
HTML frame
HTML editor
Character encodings
named characters
Unicode
Language code
Document Object Model
Browser Object Model

Text is available under the Creative Commons Attribution-ShareAlike License. Additional terms may apply.