<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.whatwg.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Loveservice</id>
	<title>WHATWG Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.whatwg.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Loveservice"/>
	<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/wiki/Special:Contributions/Loveservice"/>
	<updated>2026-04-29T15:49:32Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=HTML_vs._XHTML&amp;diff=6639</id>
		<title>HTML vs. XHTML</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=HTML_vs._XHTML&amp;diff=6639"/>
		<updated>2011-07-05T12:37:19Z</updated>

		<summary type="html">&lt;p&gt;Loveservice: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Differences Between HTML and XHTML ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p style=&amp;quot;border: 1px dashed lightgray; background-color: #FFEEEE; padding: .5em 1em;&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;This page is currently being revised. Some information is incomplete or missing.&amp;lt;/strong&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p style=&amp;quot;border: 1px dashed lightgray; background-color: #FFF8E4; padding: .5em 1em;&amp;quot;&amp;gt;Please note that the information in here is based upon the current spec for (X)HTML5.  Some of the issues technically do not apply to previous versions of HTML.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Although HTML and XHTML appear to have similarities in their syntax, they are significantly different in many ways.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Note&#039;&#039;&#039;: As the current WHATWG document is a draft, this section will need to track to a moving target.&lt;br /&gt;
&lt;br /&gt;
The document at http://dev.w3.org/html5/html-xhtml-author-guide/html-xhtml-authoring-guide.html provides a similar analysis.&lt;br /&gt;
&lt;br /&gt;
=== Overlap Language ===&lt;br /&gt;
&lt;br /&gt;
There is a community who find it valuable to be able to serve HTML5 documents which are also valid XML documents. They may, for example, use XML tools to generate the document, and they and others may process the document using XML tools.  These documents are served as text/html.&lt;br /&gt;
&lt;br /&gt;
This language is sometimes called &amp;quot;polyglot&amp;quot;.  It is the overlap language of documents which are both HTML5 documents and XML documents. Guidelines are listed below for how one can construct such a polyglot document which will work in either environment. Besides following the well-formedness rules of XML, there are some other restrictions to which one must adhere (for the sake of text/html documents).&lt;br /&gt;
&lt;br /&gt;
This wiki web page is an example of such a document.  You can parse it with an XML parser or an HTML parser.&lt;br /&gt;
&lt;br /&gt;
=== MIME Types ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  Feature&lt;br /&gt;
!  HTML Requirement&lt;br /&gt;
!  XHTML Requirement&lt;br /&gt;
!  Notes&lt;br /&gt;
|-&lt;br /&gt;
|  Mime Type&lt;br /&gt;
|  Must use &amp;lt;code&amp;gt;text/html&amp;lt;/code&amp;gt;.&lt;br /&gt;
|  Must use an XML MIME type, such as &amp;lt;code&amp;gt;application/xml&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;application/xhtml+xml&amp;lt;/code&amp;gt;.&lt;br /&gt;
|  It is the MIME type that determines what type of document you are using.  Any document, including a document authored with the intention of being XHTML, served as &amp;lt;code&amp;gt;text/html&amp;lt;/code&amp;gt; is technically an HTML document.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note that XHTML 1.0 previously defined that documents adhering to the compatibility guidelines were allowed to be served as &amp;lt;code&amp;gt;text/html&amp;lt;/code&amp;gt;, but HTML 5 now defines that such documents are HTML, not XHTML.&lt;br /&gt;
&lt;br /&gt;
=== Syntax and Parsing ===&lt;br /&gt;
&lt;br /&gt;
XHTML uses XML parsing requirements. HTML uses its own which are defined much more closely to the way browsers actually handle HTML today.  The following table describes the differences between how each is parsed.&lt;br /&gt;
&lt;br /&gt;
The column on &amp;quot;Guidance for XHTML-HTML compatibility&amp;quot; lists ways in which a document can be crafted to work in either XHTML or HTML. The item will be bolded if it is a requirement for XHTML-compliant code to be changed, since XHTML will otherwise usually work as HTML, at least if its full features are constrained.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!  Feature&lt;br /&gt;
!  HTML Requirement&lt;br /&gt;
!  XHTML Requirement&lt;br /&gt;
!  Notes&lt;br /&gt;
! Guidance for XHTML-HTML compatibility&lt;br /&gt;
|-&lt;br /&gt;
!Parsing Modes&lt;br /&gt;
|Three parsing modes are defined: &#039;&#039;no quirks mode&#039;&#039;, &#039;&#039;quirks mode&#039;&#039; and &#039;&#039;limited quirks mode&#039;&#039;.  The mode is only ever changed from the default by the HTML parser, based on the presence, absence, or value of the DOCTYPE string, respectively.  &lt;br /&gt;
|XML parsing rules are used.  There is only one mode.&lt;br /&gt;
|The parsing modes in HTML also have an effect upon script and stylesheet processing. XHTML is considered to be in &#039;&#039;no quirks mode&#039;&#039; for these purposes.&lt;br /&gt;
| &#039;&#039;&#039;Use an explicit &amp;lt;code&amp;gt;&amp;amp;lt;!DOCTYPE html&amp;amp;gt;&amp;lt;/code&amp;gt; (case insensitively) or legacy-compat version &amp;lt;code&amp;gt;&amp;amp;lt;!DOCTYPE html SYSTEM &amp;quot;about:legacy-compat&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; for the sake of HTML and thus trigger no quirks parsing.&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
!Error Handling&lt;br /&gt;
|HTML does not have a well-formedness constraint, no errors are fatal. Graceful error handling and recovery procedures are thoroughly defined.&lt;br /&gt;
|Well-formedness errors are fatal&lt;br /&gt;
|  &lt;br /&gt;
| Ensure there are no well-formedness errors.&lt;br /&gt;
|-&lt;br /&gt;
! Character Encoding (including XML Declaration, &amp;lt;code&amp;gt;meta&amp;lt;/code&amp;gt;)&lt;br /&gt;
| The XML declaration is forbidden (treated as a bogus comment, but such style of comments are deprecated), but the &amp;lt;code&amp;gt;meta&amp;lt;/code&amp;gt; element with a &amp;lt;code&amp;gt;charset&amp;lt;/code&amp;gt; attribute may be used instead.&lt;br /&gt;
If the encoding is unspecified in HTML, it should be determined through implementation specific heuristics or fallback to a default value (Note: this section of the spec is not yet finished).&lt;br /&gt;
| The XML declaration may be used to [http://wiki.whatwg.org/wiki/FAQ#How_do_I_specify_the_character_encoding.3F specify the character encoding], while &amp;lt;code&amp;gt;meta&amp;lt;/code&amp;gt; is only allowed as case-insensitive &amp;quot;UTF-8&amp;quot; (and is ignored if included).&lt;br /&gt;
The default character encoding for XHTML is, according to XML rules, &amp;lt;code&amp;gt;UTF-8&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;UTF-16&amp;lt;/code&amp;gt;.&lt;br /&gt;
|&lt;br /&gt;
| &#039;&#039;&#039;If you need to include XML 1.1-only markup, if you do not wish to convert the encoding of the document to UTF-8 or UTF-16 (since use of other encodings also requires a declaration), or if you wish to define an external SYSTEM DTD in the DOCTYPE but use standalone=yes (redundant?), you must use an XML Declaration for XHTML, but this may not be allowable in the future in HTML. For future compatibility, it would be best to avoid XML 1.1-only markup, convert to UTF-8 or UTF-16 (probably UTF-8 which could allow use of a &amp;lt;code&amp;gt;meta&amp;lt;/code&amp;gt; tag), and avoid use of a SYSTEM DTD (rendering the standalone=yes unnecessary), respectively. Do not use a &amp;lt;code&amp;gt;meta&amp;lt;/code&amp;gt; tag, unless it is UTF-8 (and included in the first 512 bytes of the document), in which case it is probably a good idea to include it for the sake of HTML (as &amp;lt;nowiki&amp;gt;&amp;lt;meta charset=&amp;quot;UTF-8&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt;) in case you cannot specify such in a content header.&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
!Namespaced elements&lt;br /&gt;
|Elements and attributes for known vocabularies (HTML, SVG and MathML) are implicitly assigned to appropriate namespaces, according to the rules specified in the parsing algorithm. Elements in the HTML, SVG, or MathML namespaces may have an &amp;lt;code&amp;gt;xmlns&amp;lt;/code&amp;gt; attribute explicitly specified, if, and only if, it has the exact value &amp;lt;code&amp;gt;&amp;quot;http://www.w3.org/1999/xhtml&amp;quot;&amp;lt;/code&amp;gt; (see [http://wiki.whatwg.org/wiki/FAQ#What_is_the_namespace_declaration.3F namespace declaration]).  The attribute has absolutely no effect. It is basically a talisman. It is allowed merely to make migration to and from XHTML mildly easier. When parsed by an HTML parser, the xmlns attribute itself ends up in no namespace. Foreign elements are also not treated as being in another namespace and will have no effect except for displaying by default as inline elements (and be aware that self-closing elements cannot be used as such since unrecognized elements will be treated as though they are non-void; thus one cannot, for example, type &amp;lt;code&amp;gt;&amp;lt;caesura /&amp;gt;&amp;lt;/code&amp;gt; in HTML or it will be treated as though there is no immediate closing tag). Namespaced prefixes are not allowed on HTML elements; a prefixed xmlns attribute cannot be used even if it is defined in the XHTML namespace.&lt;br /&gt;
| The XHTML namespace must be declared for HTML elements according to the rules defined by the &#039;&#039;[http://www.w3.org/TR/REC-xml-names/ Namespaces in XML]&#039;&#039; specification.  Namespaces must be explicitly declared. The &amp;lt;code&amp;gt;xmlns&amp;lt;/code&amp;gt; attribute ends up in the &amp;lt;code&amp;gt;&amp;quot;http://www.w3.org/2000/xmlns&amp;quot;&amp;lt;/code&amp;gt; namespace. Foreign elements can be used independently of HTML elements, as long as they are assigned to their own namespace.&lt;br /&gt;
|&lt;br /&gt;
| Declare HTML namespaces (or other namespaces) explicitly and do not prefix XHTML elements. &#039;&#039;&#039;Do not depend on the behavior of foreign namespaced elements in an HTML setting; if you need to include these, you will probably wish to set this foreign markup via CSS to &amp;lt;code&amp;gt;display:none&amp;lt;/code&amp;gt;. You should explicitly close (not self-close) all empty elements defined in a non-XHTML namespace, since otherwise when used in HTML, HTML will treat them as though they have not been closed.&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
!Namespaced attributes on HTML elements&lt;br /&gt;
| Attributes of the form &amp;lt;code&amp;gt;xmlns:&amp;lt;var&amp;gt;prefix&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt; may not be used on HTML elements. &lt;br /&gt;
| The &amp;lt;code&amp;gt;xmlns:&amp;lt;var&amp;gt;prefix&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt; attributes end up in the &amp;lt;code&amp;gt;&amp;quot;http://www.w3.org/2000/xmlns&amp;quot;&amp;lt;/code&amp;gt; namespace.&lt;br /&gt;
|&lt;br /&gt;
| &#039;&#039;&#039;Do not use namespaced attributes on HTML elements. Do not depend on the behavior of foreign attributes in an HTML setting.&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
!Namespace attributes on foreign elements&lt;br /&gt;
|&lt;br /&gt;
Elements in the SVG namespace may have an &amp;lt;code&amp;gt;xmlns&amp;lt;/code&amp;gt; attribute specified, if, and only if, it has the exact value &amp;lt;code&amp;gt;&amp;quot;http://www.w3.org/2000/svg&amp;quot;&amp;lt;/code&amp;gt;.  The attribute is optional because the namespace is implied during parsing.&lt;br /&gt;
&lt;br /&gt;
Elements in the MathML namespace may have an &amp;lt;code&amp;gt;xmlns&amp;lt;/code&amp;gt; attribute specified, if, and only if, it has the exact value &amp;lt;code&amp;gt;&amp;quot;http://www.w3.org/1998/Math/MathML&amp;quot;&amp;lt;/code&amp;gt;.  The attribute is optional because the namespace is implied during parsing.&lt;br /&gt;
&lt;br /&gt;
Foreign elements may also have an &amp;lt;code&amp;gt;xmlns:xlink&amp;lt;/code&amp;gt; attribute specified, if, and only if, it has the exact value &amp;lt;code&amp;gt;&amp;quot;http://www.w3.org/1999/xlink&amp;quot;&amp;lt;/code&amp;gt;.  This attribute is optional, even if XLink attributes are used, because the namespaces for XLink attributes is implied during parsing.&lt;br /&gt;
&lt;br /&gt;
When parsed by an HTML parser, the &amp;lt;code&amp;gt;xmlns&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;xmlns:xlink&amp;lt;/code&amp;gt; attributes end up in the &amp;lt;code&amp;gt;&amp;quot;http://www.w3.org/2000/xmlns&amp;quot;&amp;lt;/code&amp;gt; namespace.&lt;br /&gt;
|The SVG and MathML namespaces must be declared for SVG and MathML elements, respectively, according to the rules defined by &#039;&#039;Namespaces in XML&#039;&#039;.  The &amp;lt;code&amp;gt;xmlns&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;xmlns:&amp;lt;var&amp;gt;prefix&amp;lt;/var&amp;gt;&amp;lt;/code&amp;gt; attributes end up in the &amp;lt;code&amp;gt;&amp;quot;http://www.w3.org/2000/xmlns&amp;quot;&amp;lt;/code&amp;gt; namespace.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
!XLink attributes&lt;br /&gt;
|Foreign elements may use the attributes &amp;lt;code&amp;gt;xlink:actuate&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;xlink:arcrole&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;xlink:href&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;xlink:role&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;xlink:show&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;xlink:title&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;xlink:type&amp;lt;/code&amp;gt;.  These attributes are placed in the &amp;lt;code&amp;gt;&amp;quot;http://www.w3.org/1999/xlink&amp;quot;&amp;lt;/code&amp;gt;.  The prefix used must be &amp;quot;&amp;lt;code&amp;gt;xlink&amp;lt;/code&amp;gt;&amp;quot;.&lt;br /&gt;
|XLink attributes may be specified on foreign elements using any prefix, subject to the conformance rules defined by &#039;&#039;Namespaces in XML&#039;&#039;.  The XLink namespace must be declared according to the conformance rules defined by &#039;&#039;Namespaces in XML&#039;&#039; if XLink attributes are used within the document.&lt;br /&gt;
|&lt;br /&gt;
| &#039;&#039;&#039;Do not use XLink attributes on HTML elements and do not depend on them on foreign elements as will not work as such in HTML.&#039;&#039;&#039; If being used, ensure they have the appropriate XLink namespace defined.&lt;br /&gt;
|-&lt;br /&gt;
!XML attributes&lt;br /&gt;
|&lt;br /&gt;
Foreign elements may use the attributes &amp;lt;code&amp;gt;xml:lang&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;xml:id&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;xml:base&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;xml:space&amp;lt;/code&amp;gt;.  These attributes are placed in the &amp;lt;code&amp;gt;&amp;quot;http://www.w3.org/XML/1998/namespace&amp;quot;&amp;lt;/code&amp;gt;.  The prefix used must be &amp;quot;&amp;lt;code&amp;gt;xml&amp;lt;/code&amp;gt;&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
HTML elements may use the &amp;lt;code&amp;gt;xml:lang&amp;lt;/code&amp;gt; attribute. The attribute in no namespace with no prefix and with the literal localname &amp;quot;&amp;lt;code&amp;gt;xml:lang&amp;lt;/code&amp;gt;&amp;quot; has no effect on language processing (as does &amp;quot;&amp;lt;code&amp;gt;lang&amp;lt;/code&amp;gt;&amp;quot;.  HTML elements must not use the &amp;lt;code&amp;gt;xml:base&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;xml:space&amp;lt;/code&amp;gt;, or &amp;lt;code&amp;gt;xml:id&amp;lt;/code&amp;gt; attributes.&lt;br /&gt;
| Any element, including HTML elements, may use the attributes &amp;lt;code&amp;gt;xml:lang&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;xml:id&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;xml:base&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;xml:space&amp;lt;/code&amp;gt;.  These attributes are placed in the &amp;lt;code&amp;gt;&amp;quot;http://www.w3.org/XML/1998/namespace&amp;quot;&amp;lt;/code&amp;gt;.  The prefix used must be &amp;quot;&amp;lt;code&amp;gt;xml&amp;lt;/code&amp;gt;&amp;quot;.&lt;br /&gt;
|&lt;br /&gt;
| &#039;&#039;&#039;Though they can be used on foreign elements, do not use &amp;lt;code&amp;gt;xml:base&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;xml:id&amp;lt;/code&amp;gt;, or &amp;lt;code&amp;gt;xml:space&amp;lt;/code&amp;gt; on HTML elements; use both xml:lang and lang attributes whenever one is to be needed on HTML elements.&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
!Attributes&lt;br /&gt;
| Names are not case sensitive. Attribute minimization is allowed (i.e. omitting the equals sign and the value).&lt;br /&gt;
| Names are case sensitive (and lower case). Attribute minimization is not allowed. &lt;br /&gt;
|&lt;br /&gt;
| Use lower case attribute names. Do not minimize attributes. Non-namespaced attributes not belonging to HTML will be included in the DOM tree and accessible to script and stylesheets, but it is discouraged to use these due to the potential for future naming conflicts; &amp;lt;code&amp;gt;data-&amp;lt;/code&amp;gt; attributes can be used instead, or if in an XML-only environment, namespaced attributes.&lt;br /&gt;
|-&lt;br /&gt;
!Attribute values&lt;br /&gt;
| White space characters are not normalized. Unquoted attribute values are allowed. Fixed or default attribute values ...?&lt;br /&gt;
| White space characters are [http://www.w3.org/TR/REC-xml/#AVNormalize normalized] to single spaces (unless attribute is of CDATA type?). Unquoted attribute values are not allowed. Default attribute values could conceivably be defined with a DTD.&lt;br /&gt;
|&lt;br /&gt;
| Create whitespace in attribute values which is already normalized (converted to single spaces). Always quote attribute values. &#039;&#039;&#039;Do not rely on defining default or fixed attribute values (or elements with exclusively element content) in a DTD (unless it matches HTML behavior).&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
!Space characters&lt;br /&gt;
|The space characters are defined as:&lt;br /&gt;
* U+0009 CHARACTER TABULATION&lt;br /&gt;
* U+000A LINE FEED&lt;br /&gt;
* U+000C FORM FEED&lt;br /&gt;
* U+000D CARRIAGE RETURN&lt;br /&gt;
* U+0020 SPACE&lt;br /&gt;
|The space characters are defined as:&lt;br /&gt;
* U+0009 CHARACTER TABULATION&lt;br /&gt;
* U+000A LINE FEED&lt;br /&gt;
* U+000D CARRIAGE RETURN&lt;br /&gt;
* U+0020 SPACE&lt;br /&gt;
|The difference is the inclusion of Form Feed. Form feed characters are discouraged in XML 1.1.&lt;br /&gt;
| Do not use the form feed character.&lt;br /&gt;
|-&lt;br /&gt;
!  The DOCTYPE&lt;br /&gt;
|&lt;br /&gt;
A DOCTYPE is a mostly useless, but required, header. The DOCTYPE is used during parsing to determing the parsing mode.  The keywords &amp;quot;&amp;lt;code&amp;gt;DOCTYPE&amp;lt;/code&amp;gt;&amp;quot;, &amp;quot;&amp;lt;code&amp;gt;PUBLIC&amp;lt;/code&amp;gt;&amp;quot; and &amp;quot;&amp;lt;code&amp;gt;SYSTEM&amp;lt;/code&amp;gt;&amp;quot;, and the name &amp;quot;&amp;lt;code&amp;gt;html&amp;lt;/code&amp;gt;&amp;quot; are treated case insensitively.  The system identifier &amp;lt;code&amp;gt;&amp;quot;about:legacy-compat&amp;quot;&amp;lt;/code&amp;gt; (and the public and system identifiers for previous versions of HTML) are case sensitive.&lt;br /&gt;
&lt;br /&gt;
Conforming HTML documents are required to use &amp;lt;code&amp;gt;&amp;amp;lt;!DOCTYPE html&amp;amp;gt;&amp;lt;/code&amp;gt; (case insensitively) or the legacy-compat version &amp;lt;code&amp;gt;&amp;amp;lt;!DOCTYPE html SYSTEM &amp;quot;about:legacy-compat&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
When using the obsolete but conforming DOCTYPEs based on the HTML 4.0 and 4.01 Strict DTDs, the system identifier is optional.  The obsolete but conforming DOCTYPEs based on XHTML 1.0 Strict and XHTML 1.1 may also be specified.&lt;br /&gt;
&lt;br /&gt;
Use of an internal subset is forbidden.  The system identifier is never de-referenced by HTML implementations.&lt;br /&gt;
|&lt;br /&gt;
The DOCTYPE is optional.  XML rules for case sensitivity apply (everything is case sensitive).&lt;br /&gt;
&lt;br /&gt;
Either of the DOCTYPEs defined in HTML5 may be used, or any other custom DOCTYPE.  If the public identifier is specified, the system identifier must also be specified.  The obsolete status of the &#039;&#039;obsolete permitted DOCTYPEs&#039;&#039; defined for HTML does not apply to XHTML.  Any DOCTYPE may be used, subject to the conformance rules defined by XML.&lt;br /&gt;
&lt;br /&gt;
Use of an internal subset is permitted according to the requirements of XML.  Some validating XML processors may dereference the system identifier, if used, but most browsers use non-validating processors.&lt;br /&gt;
|&lt;br /&gt;
| &#039;&#039;&#039;Use the empty DOCTYPE with no SYSTEM or PUBLIC identifiers and no use of internet subset.&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
! Element names&lt;br /&gt;
| Element names are case insensitive.&lt;br /&gt;
| Element names are case sensitive and lower-case.&lt;br /&gt;
| &lt;br /&gt;
| Only use lower-case element names (as with attributes).&lt;br /&gt;
|-&lt;br /&gt;
!  Void vs. Non-void Elements&lt;br /&gt;
|  Void elements only have a start tag; end tags must not be specified for void elements, and it is impossible for them to contain any content.  A trailing slash may optionally be inserted at the end of the element&#039;s tag, immediately before the closing greater-than sign. For non-void elements (e.g., &amp;lt;nowiki&amp;gt;&amp;lt;script&amp;gt;&amp;lt;/nowiki&amp;gt;), the trailing slash is a parsing error (ignored and thus treated as unclosed).&lt;br /&gt;
|  Void elements may use either the empty-element tag syntax (&#039;&#039;EmptyElemTag&#039;&#039;) or use a start tag immediately followed by an end tag, with no content in between.  While it is possible for the element to contain content, this is non-conforming.&lt;br /&gt;
|&lt;br /&gt;
| &#039;&#039;&#039;For void elements (e.g., &amp;lt;nowiki&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;/nowiki&amp;gt;), do not include content or use a closing tag; only use a self-closing element with closing slash at the end (with a space preceding it for the sake of older browsers). For non-void elements, i.e., where content can exist (e.g., &amp;lt;nowiki&amp;gt;&amp;lt;script&amp;gt;&amp;lt;/nowiki&amp;gt;), always use an explicit closing tag (not a self-closing tag) even if there is no content.&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
! Unexpected end tags&lt;br /&gt;
| Unexpected end tags (in HTML, an unexpected &amp;lt;code&amp;gt;&amp;amp;lt;/br&amp;gt;&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;&amp;amp;lt;/p&amp;gt;&amp;lt;/code&amp;gt; can cause the start tag to be implied before it).&lt;br /&gt;
| Unexpected end tags are well-formedness errors.&lt;br /&gt;
|&lt;br /&gt;
| Do not add end tags unless there is an explicit and properly nested open tag before it.&lt;br /&gt;
|-&lt;br /&gt;
! End tag with attributes&lt;br /&gt;
| ?&lt;br /&gt;
| An end tag with attributes is not allowed.&lt;br /&gt;
|&lt;br /&gt;
| Do not use end tags with attributes.&lt;br /&gt;
|-&lt;br /&gt;
!  Raw text elements&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
!  RCDATA elements&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
!  Foreign elements&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
!  Normal elements&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
!  Optional tags&lt;br /&gt;
|&lt;br /&gt;
For [[#HTML_Elements_with_Optional_Tags|some elements]], the start and/or end tags are optional and are implied by certain specified conditions.  For example, the end tag for the &amp;lt;code&amp;gt;p&amp;lt;/code&amp;gt; element is implied by a subsequent &amp;lt;code&amp;gt;p&amp;lt;/code&amp;gt; element.&lt;br /&gt;
&lt;br /&gt;
Omitting the end tag for other elements is a parse error and various error recovery procedures are applied appropriately.&lt;br /&gt;
|  End tags must be explicitly included for all elements, except empty elements using the &#039;&#039;EmptyElemTag&#039;&#039; syntax.&lt;br /&gt;
|  &lt;br /&gt;
| Always use end tags (or self-closing tags for void elements).&lt;br /&gt;
|-&lt;br /&gt;
!  Comment syntax&lt;br /&gt;
|  Comments must start with the four character sequence &amp;quot;&amp;lt;code&amp;gt;&amp;amp;lt;!--&amp;lt;/code&amp;gt;&amp;quot; and must be ended by the three character sequence &amp;quot;&amp;lt;code&amp;gt;--&amp;gt;&amp;lt;/code&amp;gt;&amp;quot; (bogus comments such as those beginning with &amp;quot;&amp;lt;?&amp;quot; are deprecated).  The content of comments must not start with a single U+003E GREATER-THAN SIGN (&#039;&amp;gt;&#039;) character, nor start with a U+002D HYPHEN-MINUS (-) character followed by a U+003E GREATER-THAN SIGN (&#039;&amp;gt;&#039;) character, nor contain two consecutive U+002D HYPHEN-MINUS (-) characters, nor end with a U+002D HYPHEN-MINUS (-) character.  Violating these constraints is a parse error and various error recovery procedures are applied appropriately.&lt;br /&gt;
|  The content of comments must not contain two consecutive U+002D HYPHEN-MINUS (-) characters, nor end with a hyphen. Violating this is a well-formedness error.&lt;br /&gt;
| &lt;br /&gt;
| Only use comments of the &amp;quot;&amp;lt;code&amp;gt;&amp;amp;lt;!--...--&amp;gt;&amp;lt;/code&amp;gt;&amp;quot; variety. Do not use two consecutive U+002D HYPHEN-MINUS (-) characters in comment content or end with such a hyphen (especially for the sake of XML). &#039;&#039;&#039;Do not begin comments with a single U+003E GREATER-THAN SIGN (&#039;&amp;gt;&#039;) character, nor with a U+002D HYPHEN-MINUS (-) character followed by a U+003E GREATER-THAN SIGN (&#039;&amp;gt;&#039;) character.&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
!Processing Instructions&lt;br /&gt;
| HTML does not allow processing instructions and deprecates the bogus comments which appear in their form, whether in the form &amp;lt;code&amp;gt;&amp;amp;lt;?foo ...&amp;amp;gt;&amp;lt;/code&amp;gt; (without a closing &#039;?&#039;) or &amp;lt;code&amp;gt;&amp;amp;lt;?foo ...?&amp;amp;gt;&amp;lt;/code&amp;gt;.&lt;br /&gt;
| XHTML allows the use of XML processing instructions which are only closed by &amp;quot;?&amp;gt;&amp;quot;.&lt;br /&gt;
| &lt;br /&gt;
| &#039;&#039;&#039;Avoid &amp;quot;&amp;gt;&amp;quot; inside processing instructions (as these will close the &amp;quot;instruction&amp;quot; (comment) prematurely) (or one must strip out processing instructions entirely). Processing instructions might need to be avoided entirely in case HTML may in future disallow them completely.&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
!CDATA sections&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;![CDATA[...]]&amp;amp;gt;&amp;lt;/code&amp;gt; is a a bogus comment. The sequence of characters &amp;amp;quot;&amp;lt;code&amp;gt;]]&amp;amp;gt;&amp;lt;/code&amp;gt;&amp;amp;quot; in content when it does not mark the end of a &amp;lt;code&amp;gt;CDATA&amp;lt;/code&amp;gt; section is just regular character data.&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;![CDATA[...]]&amp;amp;gt;&amp;lt;/code&amp;gt; is a &amp;lt;code&amp;gt;CDATA&amp;lt;/code&amp;gt; section. The sequence of characters &amp;amp;quot;&amp;lt;code&amp;gt;]]&amp;amp;gt;&amp;lt;/code&amp;gt;&amp;amp;quot; in content when it does not mark the end of a &amp;lt;code&amp;gt;CDATA&amp;lt;/code&amp;gt; section is a well-formedness error.&lt;br /&gt;
|&lt;br /&gt;
| Ensure sequence &amp;amp;quot;&amp;lt;code&amp;gt;]]&amp;amp;gt;&amp;lt;/code&amp;gt;&amp;amp;quot; in content is escaped (not necessary to escape in attribute values). &#039;&#039;&#039;Do not use CDATA sections.&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
!  Unescaped Special Characters &lt;br /&gt;
|&lt;br /&gt;
Unescaped ampersands (U+0026 AMPERSAND - &amp;lt;code&amp;gt;&amp;amp;amp;&amp;lt;/code&amp;gt;, instead of &amp;lt;code&amp;gt;&amp;amp;amp;amp;&amp;lt;/code&amp;gt;) are permitted within the content of &#039;&#039;normal elements&#039;&#039;, &#039;&#039;RCDATA elements&#039;&#039;, &#039;&#039;foreign elements&#039;&#039; and &#039;&#039;attribute values&#039;&#039; where they are not considered to be &#039;&#039;ambiguous ampersands&#039;&#039;, and within &#039;&#039;Raw text elements&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Unescaped less than signs (U+003C LESS-THAN SIGN - &amp;lt;code&amp;gt;&amp;amp;lt;&amp;lt;/code&amp;gt;, instead of &amp;lt;code&amp;gt;&amp;amp;amp;lt;&amp;lt;/code&amp;gt;) are permitted in &#039;&#039;Raw text elements&#039;&#039;, &#039;&#039;RCDATA elements&#039;&#039; and &#039;&#039;attribute values&#039;&#039;, excluding the &#039;&#039;unquoted attribute value syntax&#039;&#039;.&lt;br /&gt;
|  Unescaped ampersands and less-than signs may not appear within &#039;&#039;CharData&#039;&#039; or &#039;&#039;AttValue&#039;&#039; (basically, the normal text content of elements and attribute values.)  Violation of this constraint is a well-formedness error.&lt;br /&gt;
|  &lt;br /&gt;
| Always escape ampersands and less-than signs in text content and attribute values. See CDATA for need to escape sequence &amp;quot;&amp;lt;code&amp;gt;]]&amp;amp;gt;&amp;lt;/code&amp;gt;&amp;quot; in text content.&lt;br /&gt;
|-&lt;br /&gt;
!Character References&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
!Entity References&lt;br /&gt;
| In HTML, all entity references are predefined and do not require a DTD.&lt;br /&gt;
| There is no formal DTD for XHTML5, but one could provide an exteranl DTD (if not an internal subset?) for use with one&#039;s entity-checking (or validating) parser, but be aware that browsers do not universally use external entity-checking (or validating) parsers and may not read the external DTD. (Some still have bugs in that they mistakenly create a well-formedness error out of such missing entities instead of showing them as missing, making them clickable, or using a entity-checking or validating parser.)&lt;br /&gt;
|&lt;br /&gt;
| Do not use entity references in XHTML (except for the 5 predefined entities: &amp;lt;code&amp;gt;&amp;amp;amp;amp;&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;&amp;amp;amp;lt;&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;&amp;amp;amp;gt;&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;&amp;amp;amp;quot;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;amp;amp;apos;)&amp;lt;/code&amp;gt;; use the equivalent Unicode or numeric character reference sequence instead.&lt;br /&gt;
|-&lt;br /&gt;
! Character data&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| The valid set of unicode characters in XML 1.0 is limited beyond that in HTML (we need to specify this here).&lt;br /&gt;
| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Element-specific parsing====&lt;br /&gt;
* In HTML, the &amp;lt;code&amp;gt;script&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;style&amp;lt;/code&amp;gt; elements are parsed as &amp;lt;code&amp;gt;CDATA&amp;lt;/code&amp;gt; elements. (Note: the definition of &amp;lt;code&amp;gt;CDATA&amp;lt;/code&amp;gt; differs from that in XML). In XML, they&#039;re parsed as normal elements (which means that things that look like comments are treated as &amp;lt;em&amp;gt;real&amp;lt;/em&amp;gt; comments, and things that look like start tags actually are start tags).&lt;br /&gt;
* In HTML, the &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;textarea&amp;lt;/code&amp;gt; elements are parsed as &amp;lt;code&amp;gt;RCDATA&amp;lt;/code&amp;gt; elements. (Note: The definition of &amp;lt;code&amp;gt;RCDATA&amp;lt;/code&amp;gt; differs from that in SGML and there is no &amp;lt;code&amp;gt;RCDATA&amp;lt;/code&amp;gt; in XML).&lt;br /&gt;
* In HTML, if scripting is enabled, the &amp;lt;code&amp;gt;noscript&amp;lt;/code&amp;gt; element is parsed as an &amp;lt;code&amp;gt;CDATA&amp;lt;/code&amp;gt; element. If scripting is disabled, it&#039;s parsed as a normal element. In XHTML, the element is always parsed as a normal element, and can&#039;t really be used to stop content from being present when script is disabled.&lt;br /&gt;
* In HTML, the &amp;lt;code&amp;gt;iframe&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;noembed&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;noframes&amp;lt;/code&amp;gt; elements are parsed as &amp;lt;code&amp;gt;CDATA&amp;lt;/code&amp;gt; elements. In XHTML, they are parsed as normal elements, and therefore do not stop content from being used.&lt;br /&gt;
* In HTML, tags for certain elements, which appear out of context, are ignored. This includes &amp;lt;code&amp;gt;caption&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;col&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;colgroup&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;frame&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;frameset&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;head&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;option&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;optgroup&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;tbody&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;td&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;tfoot&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;th&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;thead&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;tr&amp;lt;/code&amp;gt;.&lt;br /&gt;
* In XHTML, &amp;lt;code&amp;gt;table&amp;lt;/code&amp;gt; elements may contain child &amp;lt;code&amp;gt;tr&amp;lt;/code&amp;gt; elements. In the HTML serialisation, due to backwards compatibility constraints, this is not possible (though it may be done through DOM manipulation).&lt;br /&gt;
* The &amp;lt;code&amp;gt;plaintext&amp;lt;/code&amp;gt; element has a special parsing requirement in HTML. (It is, however, forbidden.)&lt;br /&gt;
* In HTML, a line feed that immediately follows a &amp;lt;code&amp;gt;pre&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;listing&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;textarea&amp;lt;/code&amp;gt; start tag is ignored.&lt;br /&gt;
* &amp;lt;em&amp;gt;Many other special handling of edge cases and error conditions, not all of which are listed here, occur in HTML.&amp;lt;/em&amp;gt; (such as?)&lt;br /&gt;
* The following are void elements in HTML (see void elements in table): In head (&amp;lt;code&amp;gt;base&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;meta&amp;lt;/code&amp;gt;), in body (&amp;lt;code&amp;gt;area&amp;lt;/code&amp;gt;,&amp;lt;code&amp;gt;br&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;col&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;embed&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;hr&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;img&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;input&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;param&amp;lt;/code&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
==== HTML Elements with Optional Tags ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Element&lt;br /&gt;
! Start Tag&lt;br /&gt;
! End Tag&lt;br /&gt;
|-&lt;br /&gt;
!html&lt;br /&gt;
|optional&lt;br /&gt;
|optional&lt;br /&gt;
|-&lt;br /&gt;
!head&lt;br /&gt;
|optional&lt;br /&gt;
|optional&lt;br /&gt;
|-&lt;br /&gt;
!body&lt;br /&gt;
|optional&lt;br /&gt;
|optional&lt;br /&gt;
|-&lt;br /&gt;
!li&lt;br /&gt;
|required&lt;br /&gt;
|optional&lt;br /&gt;
|-&lt;br /&gt;
!dt&lt;br /&gt;
|required&lt;br /&gt;
|optional&lt;br /&gt;
|-&lt;br /&gt;
!dt&lt;br /&gt;
|required&lt;br /&gt;
|optional&lt;br /&gt;
|-&lt;br /&gt;
!p&lt;br /&gt;
|required&lt;br /&gt;
|optional&lt;br /&gt;
|-&lt;br /&gt;
!colgroup&lt;br /&gt;
|optional&lt;br /&gt;
|optional&lt;br /&gt;
|-&lt;br /&gt;
!thead&lt;br /&gt;
|required&lt;br /&gt;
|optional&lt;br /&gt;
|-&lt;br /&gt;
!tbody&lt;br /&gt;
|optional&lt;br /&gt;
|optional&lt;br /&gt;
|-&lt;br /&gt;
!tfoot&lt;br /&gt;
|required&lt;br /&gt;
|optional&lt;br /&gt;
|-&lt;br /&gt;
!tr&lt;br /&gt;
|required&lt;br /&gt;
|optional&lt;br /&gt;
|-&lt;br /&gt;
!th&lt;br /&gt;
|required&lt;br /&gt;
|optional&lt;br /&gt;
|-&lt;br /&gt;
!td&lt;br /&gt;
|required&lt;br /&gt;
|optional&lt;br /&gt;
|-&lt;br /&gt;
!rt&lt;br /&gt;
|required&lt;br /&gt;
|optional&lt;br /&gt;
|-&lt;br /&gt;
!rp&lt;br /&gt;
|required&lt;br /&gt;
|optional&lt;br /&gt;
|-&lt;br /&gt;
!optgroup&lt;br /&gt;
|required&lt;br /&gt;
|optional&lt;br /&gt;
|-&lt;br /&gt;
!option&lt;br /&gt;
|required&lt;br /&gt;
|optional&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Scripts ===&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;document.write()&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;document.writeln()&amp;lt;/code&amp;gt; cannot be used in XHTML, they can in HTML. &lt;br /&gt;
* In XHTML, the use of the &amp;lt;code&amp;gt;innerHTML&amp;lt;/code&amp;gt; property requires that the string be a well-formed fragment of XML. &lt;br /&gt;
* DOM APIs are case sensitive in XHTML and some are case insensitive in HTML.  (This does not apply to elements which are not in the HTML namespace)&lt;br /&gt;
** Element.tagName and Node.nodeName return the value in uppercase in HTML but lower-case in XHTML (Node.localName is consistent now, as of HTML5).&lt;br /&gt;
** Document.createElement() is case insensitive (the canonical form is lowercase).&lt;br /&gt;
** Element.setAttributeNode() will change the attribute name to lowercase.&lt;br /&gt;
** Element.setAttribute() is case insensitive (the canonical form is lowercase).&lt;br /&gt;
** Document.getElementsByTagName() and Element.getElementsByTagName() are case insensitive.&lt;br /&gt;
** Document.renameNode(). If the new namespace is the HTML namespace, then the new qualified name will be lowercased before the rename takes place.&lt;br /&gt;
* In HTML, Document.createElement() will create an element in the HTML namespace.  In XML (including XHTML), the namespace is defined by both DOM2 and DOM3 to be null.&lt;br /&gt;
** In XHTML, browsers lack interoperability in this area.  In Firefox and Safari, the namespace is dependent upon the MIME type.  In Opera, it&#039;s dependent upon the root element.&lt;br /&gt;
* XPath expressions targeted at pre-HTML5 browsers need to use the XHTML namespace for XHTML and null for HTML. (HTML5 browsers would use the XHTML namespace even in HTML.)&lt;br /&gt;
&lt;br /&gt;
=== Stylesheets ===&lt;br /&gt;
&lt;br /&gt;
* Selectors, as used in CSS, match case sensitively in XHTML, but case insensitively in HTML.&lt;br /&gt;
* CSS requires special handling of the body element in HTML for painting backgrounds on the canvas, which do not apply to XHTML.&lt;br /&gt;
* For polyglot documents, use lower-case element selectors and style the html and body elements appropriately (?).&lt;br /&gt;
&lt;br /&gt;
== Differences Between HTML4 and HTML5 ==&lt;br /&gt;
&lt;br /&gt;
See [http://dev.w3.org/html5/html4-differences/ HTML5 differences from HTML4].&lt;br /&gt;
&lt;br /&gt;
== Differences Between DOM Level 2.0, 3.0 and the HTML 5 DOM APIs ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;This section might belong on a separate page.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* TODO (need to talk about the changes to the DOM API that HTML5 is making, compared with DOM2 and DOM3)&lt;br /&gt;
&lt;br /&gt;
== Translations ==&lt;br /&gt;
&lt;br /&gt;
* [http://meiert.com/de/publications/translations/whatwg.org/html-vs-xhtml/ German translation: &amp;quot;HTML 5 und XHTML 5 im Vergleich (WHATWG)&amp;quot;]&lt;br /&gt;
* [http://dancewithnet.com/2007/10/28/differences-between-html-and-xhtml/ Chinese translation: &amp;quot;HTML和XHTML的不同&amp;quot;]&lt;br /&gt;
*[http://www.thegrizasonline.com/ Business Solutions &amp;amp; Tools]&lt;br /&gt;
*[http://buycheapdeals.net/ cheap Halloween costumes]&lt;/div&gt;</summary>
		<author><name>Loveservice</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=RelExtensions&amp;diff=6638</id>
		<title>RelExtensions</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=RelExtensions&amp;diff=6638"/>
		<updated>2011-07-05T12:35:54Z</updated>

		<summary type="html">&lt;p&gt;Loveservice: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=This page is obsolete=&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;The HTML specification no longer references this page. It now references the Microformats &amp;quot;existing-rel-values&amp;quot; registry: http://microformats.org/wiki/existing-rel-values&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Historical contents==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;The following are the contents of this page before it was replaced.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This page lists the allowed extension values for the rel=&amp;quot;&amp;quot; attribute in HTML5. You may add your own values to this list, which makes them legal HTML5 rel values. We ask that you try to avoid redundancy; if someone has already defined a value that does roughly what you want, please reuse it. Note that rel tokens are ASCII-lowercase before comparison against canonical value, so the canonical values should be listed without uppercase ASCII letters.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Keyword&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;area&amp;lt;/code&amp;gt;&lt;br /&gt;
! Brief description&lt;br /&gt;
! Link to more details&lt;br /&gt;
! Synonyms&lt;br /&gt;
! Status&lt;br /&gt;
|-&lt;br /&gt;
| pronunciation&lt;br /&gt;
| external resource&lt;br /&gt;
| not allowed&lt;br /&gt;
| The referenced file contains a set of rules that associates strings of characters (e.g. words) with pronunciation instructions. For example, a rule can define whether the word &amp;quot;tomato&amp;quot; is to be spoken in the british or north-american way. These pronunciation rules should be processed by voice-enabled user-agents (e.g. web browsers that support TTS rendering), but conversely, &amp;quot;pronunciation&amp;quot; link/rel files can be completely ignored by systems that do not have speech capabilities. An example of possible format is W3C PLS (Pronunciation Lexicon Specification), with the MIME type &amp;quot;application/pls+xml&amp;quot; (and usually, the extension &amp;quot;.pls&amp;quot;). When several pronunciation lexicons are referenced within a single HTML document, and/or when a pronunciation rule is specified more than once for a given string of characters, the last occurrence of the rule takes precedence (in document order), such that any previously-defined pronunciation rule gets overridden.&lt;br /&gt;
| [http://www.w3.org/TR/pronunciation-lexicon/ Pronunciation Lexicon Specification (PLS) Version 1.0 (W3C Recommendation 14 October 2008)] &amp;lt;br/&amp;gt; [http://www.w3.org/Bugs/Public/show_bug.cgi?id=7601 Previously-filed bug #7601]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| accessibility&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| The linked document contains accessibility information for the linking document.&lt;br /&gt;
| [http://www.brucelawson.co.uk/2009/rel-accessibility/ Bruce Lawson]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| acquaintance&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be an acquaintance&lt;br /&gt;
| [http://gmpg.org/xfn/11 XFN]&lt;br /&gt;
| &lt;br /&gt;
| Accepted&lt;br /&gt;
|-&lt;br /&gt;
| admin&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| The linked document contains administrative option(s) for the current document and related pages.&lt;br /&gt;
| &lt;br /&gt;
| option&lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| ajax&lt;br /&gt;
| not allowed&lt;br /&gt;
| hyperlink&lt;br /&gt;
| The link is controlled through javascript, and will load the page linked to though an ajax interface. Without javascript, it should behave as a normal &amp;quot;a&amp;quot; tag, and content change is done server side.&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| alternate&lt;br /&gt;
|colspan=6| See HTML5&lt;br /&gt;
|-&lt;br /&gt;
| answer&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| A link to the answer to the question this section or document asks, e.g. in a FAQ or in a sample exam. Unlike ‘reply’ or ‘comment’ this resource necessarily solves the problem.&lt;br /&gt;
| [[Talk:RelExtensions#Q_and_A|Q&amp;amp;A]]&lt;br /&gt;
| (reply, comment)&lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| application-manifest&lt;br /&gt;
| external resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A manifest for this web application.  The manifest contains metadata about the web application, such as its name, description, and permissions the application might require.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| archives&lt;br /&gt;
|colspan=6| See HTML5&lt;br /&gt;
|-&lt;br /&gt;
| author&lt;br /&gt;
|colspan=6| See HTML5&lt;br /&gt;
|-&lt;br /&gt;
| bookmark&lt;br /&gt;
|colspan=6| See HTML5&lt;br /&gt;
|-&lt;br /&gt;
| canonical&lt;br /&gt;
| hyperlink&lt;br /&gt;
| not allowed&lt;br /&gt;
| Robots (e.g., search engines) should treat the document containing the tag as a minor variation of the linked document, which may result in the removal of the former from a web index and in the consolidation of its quality signals in the latter. Links with rel=canonical must not specify a language, type, or different kind of media; the referenced document must have the same language, type and target media.&lt;br /&gt;
| [http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| canonical-domain&lt;br /&gt;
| external resource&lt;br /&gt;
| not allowed&lt;br /&gt;
| More than one domain may have largely similar or identical content but only one of the domains should be indexed for search engines. E.g., a company may have short and long domain names for the same content.&lt;br /&gt;
For security against traffic theft, rev must be meaningless.&lt;br /&gt;
| [http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;amp;answer=139066 Google&#039;s analogous service] and [[Talk:RelExtensions#On_canonical-domain.2C_canonical-wwwnone.2C_and_canonical-first|Talk for this page]]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| canonical-first&lt;br /&gt;
| external resource&lt;br /&gt;
| hyperlink&lt;br /&gt;
| Where the canonical value should point to a group of pages, but the link can point to only one page, the group of pages can be clarified by choosing the first page in the group and assigning the URL for this rel link.&lt;br /&gt;
For security against traffic theft, rev must be meaningless.&amp;lt;br /&amp;gt;&lt;br /&gt;
This is only shorthand for providing two link elements, one on the noncanonical page to a &amp;quot;canonical&amp;quot; page and the other on the canonical page to the &amp;quot;first&amp;quot; page of the group.&lt;br /&gt;
Where the group of pages corresponds to a subdirectory and a canonical URL value can point to the subdirectory resulting in a user arriving at the subdirectory&#039;s index page which is part of the group, this shorthand is unnecessary and one rel=&amp;quot;canonical&amp;quot; will suffice.&lt;br /&gt;
| [[Talk:RelExtensions#On_canonical-domain.2C_canonical-wwwnone.2C_and_canonical-first|Talk for this page]]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| canonical-human&lt;br /&gt;
| external resource&lt;br /&gt;
| hyperlink&lt;br /&gt;
| Pages about a person across many websites can be associated based on name, nationality, birthplace, dates of birth and death, when flourished, and other identifiers.&lt;br /&gt;
Search engines could more consistently aggregate same-person pages with less confusion due to name similarity.&lt;br /&gt;
| [http://www.w3.org/Bugs/Public/show_bug.cgi?id=7681 W3C Bug 7681]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| canonical-organization&lt;br /&gt;
| external resource&lt;br /&gt;
| hyperlink&lt;br /&gt;
| Pages about an organization across many websites can be associated based on name, headquarters site, and other identifiers.&lt;br /&gt;
Search engines could more consistently aggregate same-organization pages with less confusion due to name similarity.&lt;br /&gt;
| [http://www.w3.org/Bugs/Public/show_bug.cgi?id=7682 W3C Bug 7682]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| canonical-wwwnone&lt;br /&gt;
| external resource&lt;br /&gt;
| hyperlink&lt;br /&gt;
| Both bare and www-prefixed domain names usually direct to the same site. Especially when external links to a site vary in the form used, search engine indexing concentrated on only one domain form may raise its credibility. The rel value is the form preferred for indexing, e.g., href=&amp;quot;http://example.net&amp;quot;. Nothing to the right of the top-level domain is needed.&lt;br /&gt;
For security against traffic theft, rev must be meaningless.&lt;br /&gt;
| [http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;amp;answer=139066 Google&#039;s analogous service] and [[Talk:RelExtensions#On_canonical-domain.2C_canonical-wwwnone.2C_and_canonical-first|Talk for this page]]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| chapter&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| Target document is a subdocument of the current document.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4]&lt;br /&gt;
| section, subsection, appendix&lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| child&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| the referenced person is a child of the person represented by the current document&lt;br /&gt;
| [http://gmpg.org/xfn/11 XFN]&lt;br /&gt;
| &lt;br /&gt;
| Accepted&lt;br /&gt;
|-&lt;br /&gt;
| co-resident&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| the referenced person lives in the same residence as the person represented by the current document&lt;br /&gt;
| [http://gmpg.org/xfn/11 XFN]&lt;br /&gt;
| &lt;br /&gt;
| Accepted&lt;br /&gt;
|-&lt;br /&gt;
| co-worker&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| the referenced person is a co-worker of the person represented by the current document&lt;br /&gt;
| [http://gmpg.org/xfn/11 XFN]&lt;br /&gt;
| &lt;br /&gt;
| Accepted&lt;br /&gt;
|-&lt;br /&gt;
| colleague&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| the referenced person is a colleague of the person represented by the current document&lt;br /&gt;
| [http://gmpg.org/xfn/11 XFN]&lt;br /&gt;
| &lt;br /&gt;
| Accepted&lt;br /&gt;
|-&lt;br /&gt;
| contact&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be a contact&lt;br /&gt;
| [http://gmpg.org/xfn/11 XFN]&lt;br /&gt;
| &lt;br /&gt;
| Accepted&lt;br /&gt;
|-&lt;br /&gt;
| contributor&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| The linked document is the page/email an agent (people or firm or...) involved in the production of the content, but not his main author(s).&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| crush&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| this person considers the referenced person to be a crush (i.e. has a crush on the referenced person)&lt;br /&gt;
| [http://gmpg.org/xfn/11 XFN]&lt;br /&gt;
| &lt;br /&gt;
| Accepted&lt;br /&gt;
|-&lt;br /&gt;
| date&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| this person considers the referenced person to be a date (i.e. is dating the referenced person)&lt;br /&gt;
| [http://gmpg.org/xfn/11 XFN]&lt;br /&gt;
| &lt;br /&gt;
| Accepted&lt;br /&gt;
|-&lt;br /&gt;
| dns-prefetch&lt;br /&gt;
| external resource&lt;br /&gt;
| not allowed&lt;br /&gt;
| Force the DNS lookup of specific hostnames.&lt;br /&gt;
| [https://developer.mozilla.org/En/Controlling_DNS_prefetching Mozilla DNS Prefetching], &amp;lt;br /&amp;gt;[http://dev.chromium.org/developers/design-documents/dns-prefetching Chromium DNS Prefetching]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| edit&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| Target document is an editable version of the current document.&lt;br /&gt;
| [http://bitworking.org/projects/atom/draft-ietf-atompub-protocol-11.html#new-link-relation Atom Protocol]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| edituri&lt;br /&gt;
| hyperlink&lt;br /&gt;
| not allowed&lt;br /&gt;
| a link to an RSD file describing how to edit the given page.&lt;br /&gt;
| [http://cyber.law.harvard.edu/blogs/gems/tech/rsd.htm rsd]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| enclosure&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| the destination of the hyperlink is intended to be downloaded and cached.&lt;br /&gt;
| [http://microformats.org/wiki/rel-enclosure rel-enclosure]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| enlarged&lt;br /&gt;
| not allowed&lt;br /&gt;
| hyperlink&lt;br /&gt;
| For anchors that have one child image element, indicates that the linked document is an image file which is the same as the child image element of the link except a larger size (dimensions).&lt;br /&gt;
| [http://dvdgoss.wordpress.com/2010/04/26/the-case-for-relenlarge-in-html5/ David Goss]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| external&lt;br /&gt;
|colspan=6| See HTML5&lt;br /&gt;
|-&lt;br /&gt;
| extension&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| Browser extension&lt;br /&gt;
| [http://mozillalabs.com/jetpack/2010/05/12/indexing-and-auto-detecting-browser-extensions-on-the-web/ Mozilla Labs]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| first&lt;br /&gt;
|colspan=6| See HTML5&lt;br /&gt;
|-&lt;br /&gt;
| friend&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be a friend&lt;br /&gt;
| [http://gmpg.org/xfn/11 XFN]&lt;br /&gt;
| &lt;br /&gt;
| Accepted&lt;br /&gt;
|-&lt;br /&gt;
| gallery&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| A &#039;&#039;graphic&#039;&#039; index that the current document or section is a part of or that illustrates the same topic.&lt;br /&gt;
| &lt;br /&gt;
| (index, list)&lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| glossary&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| Target document provides definitions for words in current document.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| help&lt;br /&gt;
|colspan=6| See HTML5&lt;br /&gt;
|-&lt;br /&gt;
| hub&lt;br /&gt;
| hyperlink&lt;br /&gt;
| not allowed&lt;br /&gt;
| Indicates a URL which implements both sides of the PubSubHubbub protocol.&lt;br /&gt;
| [http://code.google.com/p/pubsubhubbub/ PubSubHubbub]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| i18nrules&lt;br /&gt;
| hyperlink&lt;br /&gt;
| not allowed&lt;br /&gt;
| Target document provides ITS (Internationalization tag Set) rules for processing the current document.&lt;br /&gt;
| [http://www.w3.org/TR/its/ ITS]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| icon&lt;br /&gt;
|colspan=6| See HTML5&lt;br /&gt;
|-&lt;br /&gt;
| index&lt;br /&gt;
|colspan=6| See HTML5&lt;br /&gt;
|-&lt;br /&gt;
| jump&lt;br /&gt;
| not allowed&lt;br /&gt;
| hyperlink&lt;br /&gt;
| Indicates a same page jump from the current fragment to another fragment. (E.g. sometimes online newspapers insert direct text saying &amp;quot;article continues below the image/advert&amp;quot; - they could instead use &amp;quot;jump&amp;quot; link. Ultimately, it indicates a page internal link.)&lt;br /&gt;
| [[Talk:RelExtensions#On_footnote.2C_note.2C_and_jump|Talk]]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| kin&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| the referenced person is part of the extended family of the person represented by the current document&lt;br /&gt;
| [http://gmpg.org/xfn/11 XFN]&lt;br /&gt;
| &lt;br /&gt;
| Accepted&lt;br /&gt;
|-&lt;br /&gt;
| lang-alt-[ISO 639-1 code]&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| The linked document contains a version of the current document in an alternative language. &amp;quot;[ISO 639-1 code]&amp;quot; is replaced with the appropriate [http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes ISO 639-1 language code]. The ISO 639-1 code is used when the browser (or other user agent) wants to display either the full name of the language or a flag, as a visual aid for the end user.&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| lang-orig-[ISO 639-1 code]&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| The linked document contains a version of the current document in the language the document was originally written in. &amp;quot;[ISO 639-1 code]&amp;quot; is replaced with the appropriate [http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes ISO 639-1 language code]. The ISO 639-1 code is used when the browser (or other user agent) wants to display either the full name of the language or a flag, as a visual aid for the end user.&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| last&lt;br /&gt;
|colspan=6| See HTML5&lt;br /&gt;
|-&lt;br /&gt;
| latest-version&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| The referenced document is the latest version of the current document.&lt;br /&gt;
| [http://www.iana.org/assignments/link-relations/link-relations.txt], [http://tools.ietf.org/search/rfc5829#section-3.2 RFC5829]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| license&lt;br /&gt;
|colspan=6| See HTML5&lt;br /&gt;
|-&lt;br /&gt;
| login&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| The login keyword indicates that the referenced document provides an interface (user, pwd) to authenticate a registered user of the page/or to registrate a new user.&lt;br /&gt;
| &lt;br /&gt;
| search&lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| logout&lt;br /&gt;
| external resource&lt;br /&gt;
| not allowed&lt;br /&gt;
| The linked document provides a resource for the UA to request when all currently open documents of the same &amp;quot;group&amp;quot; are closed (to facilitate logging out the current user).&lt;br /&gt;
| [[LogoutRelExtension]]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;span id=&amp;quot;longdesc&amp;quot;&amp;gt;longdesc&amp;lt;/span&amp;gt;&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| Related to [http://www.w3.org/html/wg/tracker/issues/30 ISSUE-30]. &amp;lt;br/&amp;gt;&amp;lt;abbr title=&amp;quot;Assistive Technology&amp;quot;&amp;gt;AT&amp;lt;/abbr&amp;gt; should treat an element wrapped in a link with &amp;lt;code&amp;gt;rel=&amp;quot;longdesc&amp;quot;&amp;lt;/code&amp;gt; as equivalent to an element with &amp;lt;code&amp;gt;longdesc=&amp;quot;URI&amp;quot;&amp;lt;/code&amp;gt;. &lt;br /&gt;
| (1) [http://lists.w3.org/Archives/Public/public-html/2007Jun/0738.html Eric Eggert&#039;s original proposal, 25th of June 2007],  &amp;lt;br/&amp;gt;(2) [http://lists.w3.org/Archives/Public/public-html/2007Jun/0798.html Maciej&#039;s comment, 25th of June 2007], &amp;lt;br/&amp;gt;(3) [http://www.w3.org/Bugs/Public/show_bug.cgi?id=10434 Bug 10434, the HTMLwg, 2010]&amp;lt;br/&amp;gt;(4) [http://microformats.org/wiki/existing-rel-values#POSH_usage rel=&amp;quot;longdesc&amp;quot; listed as POSH in Microformats.org]&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;foo longdesc=&amp;quot;URL&amp;quot;/&amp;gt;&amp;lt;/code&amp;gt; &amp;lt;br/&amp;gt;is synonymous to &amp;lt;br/&amp;gt;&amp;lt;code&amp;gt;&amp;amp;lt;a rel=&amp;quot;longdesc&amp;quot; href=&amp;quot;URL&amp;quot;&amp;gt;&amp;amp;lt;foo/&amp;gt;&amp;amp;lt;/a&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| map&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| the referenced document represents a map of the location of the subject of the current document; parsers &#039;&#039;may&#039;&#039; use the URI or target page to determine coordinates.&lt;br /&gt;
| to follow&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| me&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| the referenced document represents the same person as does the current document&lt;br /&gt;
| [http://gmpg.org/xfn/11 XFN]&lt;br /&gt;
| &lt;br /&gt;
| Accepted&lt;br /&gt;
|-&lt;br /&gt;
| met&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| this person has met the referenced person&lt;br /&gt;
| [http://gmpg.org/xfn/11 XFN]&lt;br /&gt;
| &lt;br /&gt;
| Accepted&lt;br /&gt;
|-&lt;br /&gt;
| meta&lt;br /&gt;
| external resource&lt;br /&gt;
| hyperlink&lt;br /&gt;
| publishing RDF/FOAF files&lt;br /&gt;
| [http://www.w3.org/TR/1999/REC-rdf-syntax-19990222/#transport RDF], [http://xmlns.com/foaf/spec/#sec-autodesc FOAF]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| muse&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| the referenced person inspires the person represented by the current document&lt;br /&gt;
| [http://gmpg.org/xfn/11 XFN]&lt;br /&gt;
| &lt;br /&gt;
| Accepted&lt;br /&gt;
|-&lt;br /&gt;
| neighbor&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| the referenced person lives nearby the person represented by the current document&lt;br /&gt;
| [http://gmpg.org/xfn/11 XFN]&lt;br /&gt;
| &lt;br /&gt;
| Accepted&lt;br /&gt;
|-&lt;br /&gt;
| next&lt;br /&gt;
|colspan=6| See HTML5&lt;br /&gt;
|-&lt;br /&gt;
| next-archive&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| A URI that refers to the immediately following archive document.&lt;br /&gt;
| [http://www.iana.org/assignments/link-relations/link-relations.xhtml Atom Link Relations], &amp;lt;br /&amp;gt;[http://tools.ietf.org/html/rfc5005 RFC5005]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| nofollow&lt;br /&gt;
|colspan=6| See HTML5&lt;br /&gt;
|-&lt;br /&gt;
| noreferrer&lt;br /&gt;
|colspan=6| See HTML5&lt;br /&gt;
|-&lt;br /&gt;
| noprefetch&lt;br /&gt;
| external resource&lt;br /&gt;
| hyperlink&lt;br /&gt;
| Denies prefetching (not fetching) as a cost-control option for website owners, especially where pages are dynamic, leading to prefetching of wrong and useless pages.&amp;lt;br /&amp;gt;&lt;br /&gt;
The link provides a per-page denial whereas a and area provide a per-element denial.&amp;lt;br /&amp;gt;&lt;br /&gt;
For link, attributes rel=&amp;quot;noprefetch&amp;quot; denies prefetching of the page at the href URL and rev=&amp;quot;noprefetch&amp;quot; denies prefetching of the page bearing the link.&amp;lt;br /&amp;gt;&lt;br /&gt;
For a and area, rel is as above and rev is meaningless.&lt;br /&gt;
| [http://www.w3.org/Bugs/Public/show_bug.cgi?id=7918 W3C Bug 7918]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| note&lt;br /&gt;
| not allowed&lt;br /&gt;
| hyperlink&lt;br /&gt;
| An in-page or out-page jump to a footnote. This encompasses &#039;&#039;note&#039;&#039;, &#039;&#039;footnote&#039;&#039;, &#039;&#039;endnote&#039;&#039;, and &#039;&#039;sidenote&#039;&#039;.&lt;br /&gt;
| [[Talk:RelExtensions#On_footnote.2C_note.2C_and_jump|Talk]]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| openid.delegate&lt;br /&gt;
| external resource&lt;br /&gt;
| not allowed&lt;br /&gt;
| OpenID 1.1 authentication delegation&lt;br /&gt;
| [http://openid.net/specs/openid-authentication-1_1.html#delegating_authentication OpenID specification]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| openid.server&lt;br /&gt;
| external resource&lt;br /&gt;
| not allowed&lt;br /&gt;
| OpenID 1.1 authentication delegation&lt;br /&gt;
| [http://openid.net/specs/openid-authentication-1_1.html#delegating_authentication OpenID specification]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| openid2.local_id&lt;br /&gt;
| external resource&lt;br /&gt;
| not allowed&lt;br /&gt;
| OpenID 2.0 authentication delegation&lt;br /&gt;
| [http://openid.net/specs/openid-authentication-2_0.html#html_disco OpenID Auth 2.0 section 7.3.3]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| openid2.provider&lt;br /&gt;
| external resource&lt;br /&gt;
| not allowed&lt;br /&gt;
| OpenID 2.0 authentication endpoint&lt;br /&gt;
| [http://openid.net/specs/openid-authentication-2_0.html#html_disco OpenID Auth 2.0 section 7.3.3]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| parent&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| the referenced person is a parent of the person represented by the current document&lt;br /&gt;
| [http://gmpg.org/xfn/11 XFN]&lt;br /&gt;
| &lt;br /&gt;
| Accepted&lt;br /&gt;
|-&lt;br /&gt;
| payment&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| A URI where payment is accepted.&lt;br /&gt;
| [http://www.iana.org/assignments/link-relations/link-relations.xhtml Atom Link Relations]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| pgpkey&lt;br /&gt;
| hyperlink&lt;br /&gt;
| not allowed&lt;br /&gt;
| The linked document is the PGP public key file (which may contain multiple keys) of the author(s) of the page.&lt;br /&gt;
| [http://purl.org/net/pgpkey/], [http://golem.ph.utexas.edu/~distler/blog/archives/000320.html]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| pingback&lt;br /&gt;
|colspan=6| See HTML5&lt;br /&gt;
|-&lt;br /&gt;
| prefetch&lt;br /&gt;
|colspan=6| See HTML5&lt;br /&gt;
|-&lt;br /&gt;
| prerender&lt;br /&gt;
| external resource&lt;br /&gt;
| not allowed&lt;br /&gt;
| Prerender the specified URL including all subresources and running all scripts.&lt;br /&gt;
| [http://dev.chromium.org/developers/design-documents/prerender Chromium Prerendering]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| presentation&lt;br /&gt;
| external resource&lt;br /&gt;
| hyperlink&lt;br /&gt;
| Like ‘print’ this relation references a resource that represents the same content or topic, but in a &#039;&#039;very&#039;&#039; different manner. It is similar to media=projection, but is to be used where text is substituted by graphics, animations and sounds, which goes beyond mere style switching.&lt;br /&gt;
This relation is also appropriate for links from thumbnail to full resolution images.&lt;br /&gt;
| &lt;br /&gt;
| slides, slideshow&lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| prev&lt;br /&gt;
|colspan=6| See HTML5&lt;br /&gt;
|-&lt;br /&gt;
| prev-archive&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| A URI that refers to the immediately preceding archive document.&lt;br /&gt;
| [http://www.iana.org/assignments/link-relations/link-relations.xhtml Atom Link Relations], &amp;lt;br /&amp;gt;[http://tools.ietf.org/html/rfc5005 RFC5005]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| print&lt;br /&gt;
| external resource&lt;br /&gt;
| hyperlink&lt;br /&gt;
| The referenced document is recommended for printing, even though the referent document is capable of being printed and both documents are of the same type, medium, and language. A typical case is where content spread over multiple pages is also available on a single page that is more convenient to print.&lt;br /&gt;
This is semantically more specific than &amp;quot;canonical&amp;quot; and &amp;quot;alternate&amp;quot;. Where type, medium, and/or language differ, consider &amp;quot;alternate&amp;quot;; where any of them differ but the purpose is printing, consider applying both values.&lt;br /&gt;
| [http://www.w3.org/Bugs/Public/show_bug.cgi?id=7645 W3C Bug 7645]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| profile&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| this referenced link is a metadata profile for the current document&lt;br /&gt;
| [http://www.w3.org/TR/html401/struct/global.html#profiles HTML Meta data profiles], &amp;lt;br /&amp;gt;[http://www.w3.org/2003/g/glean-profile Example of profile in a-elements]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| question&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| A link to the question this section or document answers, e.g. in a FAQ or in a sample exam. &lt;br /&gt;
| [[Talk:RelExtensions#Q_and_A|Q&amp;amp;A]]&lt;br /&gt;
| topic, subject, problem, (up)&lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| related&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| this referenced link identifies a resource related to the current document&lt;br /&gt;
| [http://tools.ietf.org/html/rfc4287#section-4.2.7 Atom Syndication Format]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| reply&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| A follow-up posting to this document or section or in the thread this document or section is an index of.&lt;br /&gt;
| [[Talk:RelExtensions#Threading|Thread]]&lt;br /&gt;
| posting, comment&lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| resource-package&lt;br /&gt;
| external resource&lt;br /&gt;
| not allowed&lt;br /&gt;
| The linked document is a zipped resource package&lt;br /&gt;
| [http://limi.net/articles/resource-packages/ Resource Packages]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| resources&lt;br /&gt;
| external resource&lt;br /&gt;
| not allowed&lt;br /&gt;
| a higher level alternative to HTTP Content Negotiation for other resources linked from the document, in a yet to be specified format&lt;br /&gt;
|&lt;br /&gt;
| resource-description, content-negotiation&lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| reviewer&lt;br /&gt;
| hyperlink&lt;br /&gt;
| not allowed&lt;br /&gt;
| The linked document is the page/email an agent (people or firm or...) responsible for reviewing the content.&lt;br /&gt;
| [http://wiki.csswg.org/test/css2.1/format#reviewer]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| script&lt;br /&gt;
| not allowed&lt;br /&gt;
| not allowed&lt;br /&gt;
| Was proposed to replace &amp;amp;lt;script&amp;gt;. Use &amp;amp;lt;script&amp;gt; instead.&lt;br /&gt;
| none&lt;br /&gt;
| &lt;br /&gt;
| Rejected&lt;br /&gt;
|-&lt;br /&gt;
| search&lt;br /&gt;
|colspan=6| See HTML5&lt;br /&gt;
|-&lt;br /&gt;
| self&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| A URI that refers to a resource equivalent to the containing element.&lt;br /&gt;
| [http://www.iana.org/assignments/link-relations/link-relations.xhtml Atom Link Relations], &amp;lt;br /&amp;gt;[http://tools.ietf.org/html/rfc4287 RFC4287]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| service&lt;br /&gt;
| external resource&lt;br /&gt;
| not allowed&lt;br /&gt;
| Points to a resource describing a service API&lt;br /&gt;
| [[ServiceRelExtension]]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| shortlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| Identifies a shorter form of the URL for the current document, provided by the document owner.&lt;br /&gt;
| [http://code.google.com/p/shortlink/wiki/Specification shortlink Specification]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| sibling&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| the referenced person is a sibling of the person represented by the current document&lt;br /&gt;
| [http://gmpg.org/xfn/11 XFN]&lt;br /&gt;
| &lt;br /&gt;
| Accepted&lt;br /&gt;
|-&lt;br /&gt;
| sidebar&lt;br /&gt;
|colspan=6| See HTML5&lt;br /&gt;
|-&lt;br /&gt;
| spouse&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| the referenced person is a spouse of the person represented by the current document&lt;br /&gt;
| [http://gmpg.org/xfn/11 XFN]&lt;br /&gt;
| &lt;br /&gt;
| Accepted&lt;br /&gt;
|-&lt;br /&gt;
| statechart&lt;br /&gt;
| external resource&lt;br /&gt;
| not allowed&lt;br /&gt;
| A reference to an SCXML document that controls the application-flow of the current HTML document&lt;br /&gt;
| [http://www.w3.org/TR/scxml/ SCXML]&lt;br /&gt;
|&lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| stylesheet&lt;br /&gt;
|colspan=6| See HTML5&lt;br /&gt;
|-&lt;br /&gt;
| subresource&lt;br /&gt;
| hyperlink&lt;br /&gt;
| not allowed&lt;br /&gt;
| The referenced document is a subresource of the current document.&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| sweetheart&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| this person considers the referenced person to be their sweetheart&lt;br /&gt;
| [http://gmpg.org/xfn/11 XFN]&lt;br /&gt;
| &lt;br /&gt;
| Accepted&lt;br /&gt;
|-&lt;br /&gt;
| tag&lt;br /&gt;
|colspan=6| See HTML5&lt;br /&gt;
|-&lt;br /&gt;
| technicalauthor&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| The linked document is the page/email an agent (people or firm or...) responsible for the technical construction of the page (i.e. the HTML/CSS/PHP code), not for the content.&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| thread&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| A hierarchic list of topic(s) and replies where this document or section belongs to either one.&lt;br /&gt;
| [[Talk:RelExtensions#Threading|Thread]]&lt;br /&gt;
| (index)&lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| timesheet&lt;br /&gt;
| external resource&lt;br /&gt;
| not allowed&lt;br /&gt;
| SMIL Timesheet&lt;br /&gt;
| [http://www.w3.org/TR/timesheets/#smilTimesheetsNS-Elements-Timesheet SMIL Timesheets 1.0]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| topic&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| The initial posting this document or section is a reply to or index of.&lt;br /&gt;
| [[Talk:RelExtensions#Threading|Thread]]&lt;br /&gt;
| subject, (top)&lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| translatedfrom&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| The linked document is the page/email that has been translation source for the current document. It also indicates that the current document is a translation and not an original work.&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| translator&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| The linked document is the page/email an agent (people or firm or...) responsible for the translation of the page. It also indicates that the current page is a translation of an other document, which should be linked through a rel=&amp;quot;translatedfrom&amp;quot;.&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| up&lt;br /&gt;
|colspan=6| See HTML5&lt;br /&gt;
|-&lt;br /&gt;
| us&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| The referenced document represents the same organisation as does the current document [cf rel-me]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| webmaster&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| The linked document is the page/email an agent (people or firm or...) available for requests about the content of the page.&lt;br /&gt;
| &lt;br /&gt;
| maintainer&lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| widget&lt;br /&gt;
| hyperlink&lt;br /&gt;
| hyperlink&lt;br /&gt;
| Points to a widget.&lt;br /&gt;
| [http://dev.w3.org/2006/waf/widgets/Overview.html#autodiscovery Widgets 1.0 Editor&#039;s draft]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|-&lt;br /&gt;
| wlwmanifest&lt;br /&gt;
| hyperlink&lt;br /&gt;
| not allowed&lt;br /&gt;
| A link to a manifest for Windows Live Writer.&lt;br /&gt;
| [http://msdn.microsoft.com/en-us/library/bb463263.aspx msdn]&lt;br /&gt;
| &lt;br /&gt;
| Proposal&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- Science: proof, lemma, theorem --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;Effect on link&amp;quot; column must either say &amp;quot;not allowed&amp;quot; if the rel value is not allowed on &amp;amp;lt;link&amp;gt; elements, &amp;quot;hyperlink&amp;quot; if the rel value creates a hyperlink, or &amp;quot;external resource&amp;quot; if the rel value creates a link to an external resource.&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;Effect on a and area&amp;quot; column must either say &amp;quot;not allowed&amp;quot; or &amp;quot;hyperlink&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
For the &amp;quot;Status&amp;quot; section to be changed to &amp;quot;Accepted&amp;quot;, the proposed keyword must either have been through the [http://microformats.org/wiki/process Microformats process], and been approved by the Microformats community; or must be defined by a W3C specification in the Candidate Recommendation or Recommendation state. If it fails to go through this process, it is &amp;quot;Rejected&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
For more details, see [http://whatwg.org/specs/web-apps/current-work/#linkTypes the HTML5 specification].&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
*[http://microformats.org/wiki/existing-rel-values the Microformats wiki page on this matter].&lt;br /&gt;
*[http://blogs.plos.org/mfenner/2011/02/14/how-to-use-citation-typing-ontology-cito-in-your-blog-posts/ How to use Citation Typing Ontology (CiTO) in your blog posts] - proposes several values for marking up academic citations, but confuses the direction of the relationship &lt;br /&gt;
*[http://www.hostgatorcouponsreview.com HostGator Coupons]&lt;br /&gt;
*[http://www.thegrizasonline.com/inmotion-hosting-review-inmotion-hosting-coupon InMotion Review]&lt;br /&gt;
(note comments)&lt;br /&gt;
&lt;br /&gt;
[[Category:Registries]]&lt;/div&gt;</summary>
		<author><name>Loveservice</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=Main_Page&amp;diff=6637</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=Main_Page&amp;diff=6637"/>
		<updated>2011-07-05T12:34:53Z</updated>

		<summary type="html">&lt;p&gt;Loveservice: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the WHATWG Wiki!&lt;br /&gt;
&lt;br /&gt;
You can be a part of our community, making proposals for the next version of HTML. This wiki is made available for you for drafting proposals, for writing essays, for keeping track of HTML-related issues, and so forth. Anyone can create an account and contribute content.&lt;br /&gt;
&lt;br /&gt;
Before you begin, you may wish to read our [[WHATWG Wiki:Contribution Guidelines|contribution guidelines]].&lt;br /&gt;
&lt;br /&gt;
==Quick Links==&lt;br /&gt;
* [[FAQ]]&lt;br /&gt;
* [[What you can do]] — &#039;&#039;&#039;[[Reviewing|Review our work!]]&lt;br /&gt;
* [[:Category:Implementations|Implementations]]&lt;br /&gt;
* [[Presentations]]&lt;br /&gt;
* [http://www.thegrizasonline.com/inmotion-hosting-review-inmotion-hosting-coupon InMotion Review]&lt;br /&gt;
==Web Developers==&lt;br /&gt;
* [[Authoring|Using HTML in your Web site]]&lt;br /&gt;
* [[Presentational elements and attributes]]&lt;br /&gt;
* [[HTML vs. XHTML]]&lt;br /&gt;
* [http://www.hostgatorcouponsreview.com HostGator Coupons]&lt;br /&gt;
&lt;br /&gt;
==Spec Development==&lt;br /&gt;
* [[:Category:Spec coordination|Spec coordination]]&lt;br /&gt;
* [[:Category:Proposals|Proposals]]&lt;br /&gt;
* [[:Category:Registries|Registries]]&lt;br /&gt;
* [[Issue Discussion]]&lt;br /&gt;
* [[Testsuite]]&lt;br /&gt;
&lt;br /&gt;
==WHATWG Specifications==&lt;br /&gt;
* [http://whatwg.org/html HTML]&lt;br /&gt;
* [http://whatwg.org/ww Web Workers]&lt;br /&gt;
* [http://whatwg.org/C Web Applications 1.0] (all-in-one)&lt;br /&gt;
* See also [[FAQ#What_are_the_various_versions_of_the_spec.3F|What are the various versions of the spec?]] in the FAQ.&lt;br /&gt;
&lt;br /&gt;
==Communicating with the community==&lt;br /&gt;
The WHATWG community has several channels of communication:&lt;br /&gt;
* [[IRC]] and [http://www.whatwg.org/mailing-list mailing lists]&lt;br /&gt;
* [http://forums.whatwg.org/ Forums]&lt;br /&gt;
* [http://blog.whatwg.org/ The WHATWG Blog], including [http://blog.whatwg.org/category/weekly-review WHATWG Weekly]&lt;br /&gt;
* [http://twitter.com/WHATWG @WHATWG] on twitter&lt;br /&gt;
* [http://www.w3.org/html/planet/ W3C&#039;s Planet HTML5]&lt;/div&gt;</summary>
		<author><name>Loveservice</name></author>
	</entry>
</feed>