This document is also available in these non-normative formats: Single XHTML file , PostScript version , PDF version , ZIP archive , and Gzip'd TAR archive .
Copyright ©2006 W3C ® ( MIT , ERCIM , Keio ), All Rights Reserved. W3C liability , trademark and document use rules apply.
XHTML 2 is a general-purpose markup language designed for representing documents for a wide range of purposes across the World Wide Web. To this end it does not attempt to be all things to all people, supplying every possible markup idiom, but to supply a generally useful set of elements.
This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications and the latest revision of this technical report can be found in the W3C technical reports index at http://www.w3.org/TR/.
This document is the eighth public Working Draft of this specification. It should in no way be considered stable, and should not be normatively referenced for any purposes whatsoever. This version includes an early implementation of XHTML 2.0 in RELAX NG [ RELAXNG ], but does not include the implementations in DTD or XML Schema form. Those will be included in subsequent versions, once the content of this language stabilizes.
Formal issues and error reports on this specification shall be submitted to www-html-editor@w3.org ( archive ). It is inappropriate to send discussion email to this address. Public discussion may take place on www-html@w3.org ( archive ). To subscribe send an email to www-html-request@w3.org with the word subscribe in the subject line.
This document has been produced by the W3C HTML Working Group ( members only ) as part of the W3C HTML Activity . The goals of the HTML Working Group are discussed in the HTML Working Group charter .
This document was produced by a group operating under the 24 January 2002 CPP as amended by the W3C Patent Policy Transition Procedure . W3C maintains a public list of any patent disclosures made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains Essential Claim(s) must disclose the information in accordance with section 6 of the W3C Patent Policy .
Publication as a Working Draft does not imply endorsement by the W3C Membership. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.
This section is informative .
XHTML 2 is a general purpose markup language designed for
representing documents for a wide range of purposes across the
World Wide Web. To this end it does not attempt to be all things to
all people, supplying every possible markup idiom, but to supply a
generally useful set of elements, with the possibility of extension
using the class and role attributes on
the span and div elements in combination
with style sheets, and attributes from the metadata attributes
collection.
In designing XHTML 2, a number of design aims were kept in mind to help direct the design. These included:
Because earlier versions of HTML were special-purpose languages, it was necessary to ensure a level of backwards compatibility with new versions so that new documents would still be usable in older browsers. However, thanks to XML and style sheets, such strict element-wise backwards compatibility is no longer necessary, since an XML-based browser, of which at the time of writing means more than 95% of browsers in use, can process new markup languages without having to be updated. Much of XHTML 2 works already in existing browsers; much, but not all: just as when forms and tables were added to HTML, and people had to wait for new version of browsers before being able to use the new facilities, some parts of XHTML 2, principally XForms and XML Events, still require user agents that understand that functionality.
The very first version of HTML was designed to represent the structure of a document, not its presentation. Even though presentation-oriented elements were later added to the language by browser manufacturers, HTML is at heart a document structuring language. XHTML 2 takes HTML back to these roots, by removing all presentation elements, and subordinating all presentation to style sheets. This gives greater flexibility, greater accessibility, more device independence, and more powerful presentation possibilities, since style sheets can do more than the presentational elements of HTML ever did.
The original versions of HTML relied upon built-in knowledge on the part of User Agents and other document processors. While much of this knowledge had to do with presentation (see above), the bulk of the remainder had to do with the relationships between documents — so called "linking".
A variety of W3C and other efforts, most notably [ XLINK ], attempted to create a grammar for defining the characteristings of linking. Unfortunately, these grammars all fall short of the requirements of XHTML. The community is continuing in its efforts to create a comprehensive grammar that describes link characteristics.
The HTML Working Group has determined that such a grammar, while generally useful, is not required for the definition of XHTML 2. Instead, this document is explicit in the characteristics of the elements and attributes that are used to connect to other resources. The Working Group has taken this course because 1) the problem with XHTML 2 is well bounded, 2) the general solution is slow in coming, and 3) it will be easier for implementors to support and users to rely upon.
XHTML 2 is designed to be recognizable to the HTML and XHTML 1 author, while correcting errors and insufficiencies identified in earlier versions of the HTML family, and taking the opportunity to make improvements.
The most visible changes are the following:
hr element was used to separate sections of a text
from each other. In retrospect, the name hr (for
horizontal rule ) was misleading, because an hr
was neither necessarily horizontal (in vertical text it was
vertical), nor necessarily a rule (books often use other
typographical methods such as a line of three asterisks to
represent separators, and style sheets can be used to give you this
freedom). In order to emphasize its structuring nature, to make it
more widely usable, and to make it clearer that it has no essential
directionality, hr has been renamed separator .br element was used to add micro-structure to text,
essentially breaking a piece of text into several 'lines'. This
micro-structure is now made explicit in XHTML 2 with the l element, which encloses the text
to be broken. Amongst other advantages, this gives more
presentational opportunities, such as the ability to automatically
number lines, or to color alternate lines differently.img element has many
shortcomings: it only allows you to specify a single resource for
an image, rather than offering the fallback opportunities of the object element; the
only fallback option it gives is the alt text, which
can only be plain text, and not marked up in any way; the
longdesc attribute which allows you to provide a long
description of the image is difficult to author and seldom
supported.
XHTML 2 takes a completely different approach, by taking the
premise that all images have a long description and treating the
image and the text as equivalents. In XHTML 2 any element
may have a src
attribute, which specifies a resource (such as an image) to load
instead of the element. If the resource is unavailable (because of
network failure, because it is of a type that the browser can't
handle, or because images have been turned off) then the element is
used instead. Essentially the longdesc has been moved
into the document, though this behavior also mimicks the fallback
behavior of the
object element. (To achieve the tooltip effect that some
browsers gave with the alt attribute, as in HTML 4 you
use the title
attribute).
ins
and del elements to mark changes in a document, an
attribute edit may be
used on any element for the same purpose.<li><a
href="home.html">Home</a></li> , you can now
write <li href="home.html">Home</li> .
Even though this means that the a element is now strictly-speaking
unnecessary, it has been retained.role attribute has been added, along
with an initial set of useful values, in order to classify the use
of a particular element. For instance a paragraph may play the role
of a note, and so may be marked up <p
role="note"> .Events: event handling in HTML was restricted in several ways:
since the event names were hard-wired in the language (such as
onclick ), the only way to add new events was to
change the language; many of the events (such as click
) were device-specific, rather than referring to the intent of the
event (such as activating a link); you could only handle an event
in one scripting language — it was not possible to supply
event handlers in the same document for several different scripting
languages.
XHTML 2 uses XML Events [
XMLEVENTS ] to specify event handling, giving greater freedom
in the ability to handle events. Along with this, the
script element has been renamed handler to
indicate its different semantics.
frameset and
frame elements. The Frames model is no longer defined
in XHTML. Instead, if is defined through the separate [ XFRAMES ] specification.XHTML 2 is a member of the XHTML Family of markup languages. It is an XHTML Host Language as defined in XHTML Modularization. As such, it is made up of a set of XHTML Modules that together describe the elements and attributes of the language, and their content model. XHTML 2 updates many of the modules defined in XHTML Modularization 1.0 [ XHTMLMOD ], and includes the updated versions of all those modules and their semantics. XHTML 2 also uses modules from Ruby [ RUBY ], XML Events [ XMLEVENTS ], and XForms [ XFORMS ].
The modules defined in this specification are largely extensions of the modules defined in XHTML Modularization 1.0. This specification also defines the semantics of the modules it includes. So, that means that unlike earlier versions of XHTML that relied upon the semantics defined in HTML 4 [ HTML4 ], all of the semantics for XHTML 2 are defined either in this specification or in the specifications that it normatively references.
Even though the XHTML 2 modules are defined in this specification, they are available for use in other XHTML family markup languages. Over time, it is possible that the modules defined in this specification will migrate into the XHTML Modularization specification.
[XHTML2] Spirit of "1.1.3. XHTML 2 and Presentation" PR #7759
State: Suspended
Resolution: None
User: None
Notes:
Suspended until last call
This section is normative .
While some terms are defined in place, the following definitions are used throughout this document. Familiarity with the W3C XML 1.0 Recommendation [ XML ] is highly recommended.
none ) not disabled (see [ XFORMS ]), and either 1) have an href attribute or 2)
are considered a form control as defined in [ XFORMS ].This section is normative .
The keywords "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in [ RFC2119 ].
In this document, the use of the word 'schema' refers to any definition of the syntax of XHTML 2, regardless of the definition language used.
A strictly conforming XHTML 2.0 document is a document that requires only the facilities described as mandatory in this specification. Such a document must meet all the following criteria:
The document must conform to the constraints expressed in the schemas in Appendix B - XHTML 2.0 RELAX NG Definition , Appendix D - XHTML 2.0 Schema and Appendix F - XHTML 2.0 Document Type Definition .
The local part of the root element of the
document must be html .
The start tag of the root element of the
document must explicitly contain an xmlns declaration
for the XHTML 2.0 namespace [
XMLNS ]. The namespace URI for XHTML 2.0 is defined to be
http://www.w3.org/2002/06/xhtml2/ .
The start tag
may also contain an xsi:schemaLocation attribute that associates this namespace with the
XML Schema at the URI
http://www.w3.org/MarkUp/SCHEMA/xhtml2.xsd .
Sample root element
<html xmlns="http://www.w3.org/2002/06/xhtml2/" xml:lang="en"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3.org/2002/06/xhtml2/
http://www.w3.org/MarkUp/SCHEMA/xhtml2.xsd"
>
There should be a DOCTYPE declaration in the document prior to the root element. If present, the public identifier included in the DOCTYPE declaration must reference the DTD found in Appendix F using its Public Identifier. The system identifier may be modified appropriately.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 2.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml2.dtd">
Example of an XHTML 2.0 document
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css"
href="http://www.w3.org/MarkUp/style/xhtml2.css"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 2.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml2.dtd">
<html xmlns="http://www.w3.org/2002/06/xhtml2/" xml:lang="en"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3.org/2002/06/xhtml2/
http://www.w3.org/MarkUp/SCHEMA/xhtml2.xsd"
>
<head>
<title>Virtual Library</title>
</head>
<body>
<p>Moved to <a href="http://example.org/">example.org</a>.</p>
</body>
</html>
Note that in this example, the XML declaration is included. An XML declaration like the one above is not required in all XML documents. XHTML document authors should use XML declarations in all their documents. XHTML document authors must use an XML declaration when the character encoding of the document is other than the default UTF-8 or UTF-16 and no encoding is specified by a higher-level protocol.
A conforming user agent must meet all of the following criteria, as well as other requirements found throughout this specification:
The user agent must parse and evaluate an XHTML 2 document for well-formedness. If the user agent claims to be a validating user agent, it must also validate documents against a referenced schema according to [ XML ].
When the user agent claims to support facilities defined within this specification or required by this specification through normative reference, it must do so in ways consistent with the facilities' definition.
A user agent must only recognize attributes
of type ID (e.g., the id or
xml:id attribute on most XHTML 2 elements) as
fragment identifiers.
If a user agent encounters an element it does not recognize, it must continue to process the content of that element. If this "unrecognized" element uses recognized attributes, those attributes must be processed with their usual semantics.
If a user agent encounters an attribute it does not recognize, it must ignore the entire attribute specification (i.e., the attribute and its value).
If a user agent encounters an attribute value it doesn't recognize, it must use the default attribute value.
When rendering content, user agents that encounter characters or character entity references that are recognized but not renderable should display the document in such a way that it is obvious to the user that normal rendering has not taken place.
White space must be handled according to the rules of [ XML ]. All XHTML 2 elements preserve whitespace.
The user agent must use the definition from CSS for processing white space characters [ CSS3-TEXT ].
In the absence of a style-sheet, including user agents that do not process style sheets, the default visual presentation should be as if the user agent used the CSS style sheet specified in Appendix H.
Note that this specification does not generally specify the behavior of conforming implementations when presented with non-conforming documents. This is either defined by an underlying specification (e.g., [ XML ]) or left to the implementor.
On introducing a fallback attribute PR #7723
State: Open
Resolution: None
User: None
Notes:
[XHTML 2] Conforming documents and meta
properties PR
#7777
State: Open
Resolution: None
User: None
Notes:
Fw: [XHTML 2] Section 3.1.1
PR #7791
State: Open
Resolution: None
User: None
Notes:
Comments on XHTML 2.0 document conformance
requirements PR
#7804
State: Open
Resolution: None
User: None
Notes:
Change XHTML 2.0 namespace to
http://www.w3.org/1999/xhtml PR #7808
State: Open
Resolution: None
User: None
Notes:
Namespace versioning problem in XHTML 2 PR #7818
State: Open
Resolution: None
User: None
Notes:
Referance XML 1.1 and example with XML 1.1
declaration PR
#7819
State: Open
Resolution: None
User: None
Notes:
This section is normative .
The XHTML 2.0 document type is a fully functional document type with rich semantics. It is a collection of XHTML-conforming modules (most of which are defined in this specification). The Modules and their elements are listed here for information purposes, but the definitions in their base documents should be considered authoritative. In the on-line version of this document, the module names in the list below link into the definitions of the modules within the relevant version of the authoritative specification.
body, head, html, titleaddress, blockcode, blockquote, div, h, h1, h2, h3, h4,
h5, h6, p, pre, section, separatorabbr, cite, code, dfn, em, kbd, l, q, samp, span, strong, sub, sup, varadl, dt, dd, label, nl, ol, ul, liclass , id , and title
attributeshref , hreftype , cite ,
target , rel , rev ,
access , nextfocus , prevfocus ,
and xml:base attributesxml:lang attributedir attributeedit and datetime attributessrc and type attributeshandlerusemap, ismap, shape , and coords
attributesmedia attributeabout , content ,
datatype , property , rel ,
resource , restype , and rev
attributesmeta , linkobject, param, standbystyle attributestyle elementcaption, col, colgroup, summary, table, tbody, td, tfoot,
th, thead, trXHTML 2.0 also uses the following externally defined modules:
ruby, rbc, rtc, rb, rt, rpaction, alert, bind, case, choices, copy, delete,
dispatch, extension, filename, group, help, hint, input, insert,
instance, item, itemset, label, load, mediatype, message, model,
output, range, rebuild, recalculate, refresh, repeat, reset,
revalidate, secret, select, select1, send, setfocus, setindex,
setvalue, submission, submit, switch, textarea, toggle, trigger,
upload , and value elements, and
repeat-model, repeat-bind, repeat-nodeset, repeat-startindex
, and repeat-number attributeslistener element, and defaultAction, event,
handler, objserver, phase, propagate , and
target attributes in the [ XMLEVENTS ] namespaceAn implementation of this document type as a RELAX NG grammar is defined in Appendix B , as an XML Schema in Appendix D , and as a DTD in Appendix F .
Identifying XHTML
version in ansence of DTDs PR #7336
State: Suspended
Resolution: Defer
User: None
Notes:
BAE F2F: for the present DTD's are required for entity resolution.
This is a tricky issue, and the working group needs to resolve it
quickly. We are asking for input from the Hypertext Coordination
Group and others in our quest to sort it out.
This section is normative .
This document defines a variety of XHTML modules and the semantics of those modules. This section describes the conventions used in those module definitions.
Each module in this document is structured in the following way:
Note that attributes are fully defined only the first time they are used in each module. After that, only a brief description of the attribute is provided, along with a link back to the primary definition.
An abstract module is a definition of an XHTML module using prose text and some informal markup conventions. While such a definition is not generally useful in the machine processing of document types, it is critical in helping people understand what is contained in a module. This section defines the way in which XHTML abstract modules are defined. An XHTML-conforming module is not required to provide an abstract module definition. However, anyone developing an XHTML module is encouraged to provide an abstraction to ease in the use of that module.
The abstract modules are not defined in a formal grammar. However, the definitions do adhere to the following syntactic conventions. These conventions are similar to those of XML DTDs, and should be familiar to XML DTD authors. Each discrete syntactic element can be combined with others to make more complex expressions that conform to the algebra defined here.
expr ?expr +expr *a , ba is required, followed by expression
b .a | ba - b& ).* ).| ), inside of
parentheses following the attribute name. If the attribute has a
default value, that value is followed by an asterisk (
* ). If the attribute has a fixed value, the attribute name
is followed by an equals sign ( = ) and the fixed
value enclosed in quotation marks.Abstract module definitions define minimal, atomic content models for each module. These minimal content models reference the elements in the module itself. They may also reference elements in other modules upon which the abstract module depends. Finally, the content model in many cases requires that text be permitted as content to one or more elements. In these cases, the symbol used for text is PCDATA (parsed characted data). This is a term, defined in the XML 1.0 Recommendation, that refers to processed character data. A content type can also be defined as EMPTY , meaning the element has no content in its minimal content model.
In some instances, it is necessary to define the types of attribute values or the explicit set of permitted values for attributes. The following attribute types (defined in the XML 1.0 Recommendation) are used in the definitions of the abstract modules:
| Attribute Type | Definition |
|---|---|
| CDATA | Character data |
| ID | A document-unique identifier |
| IDREF | A reference to a document-unique identifier |
| IDREFS | A space-separated list of references to document-unique identifiers |
| NMTOKEN | A name composed of only name tokens as defined in XML 1.0 [ XML ]. |
| NMTOKENS | One or more white space separated NMTOKEN values |
| NUMBER | Sequence of one or more digits ([0-9]) |
In addition to these pre-defined data types, XHTML Modularization defines the following data types and their semantics (as appropriate):
| Data type | Description |
|---|---|
| Character | A single character, as per section 2.2 of [ XML ]. |
| Encodings | A comma-separated list of 'charset's with optional q parameters, as defined in section 14.2 of [ RFC2616 ] as the field value of the Accept-Charset request header. |
| ContentType | A media type, as per [ RFC2045 ]. |
| ContentTypes | Attributes of this type identify the allowable content type(s)
of an associated
URI (usually a value of another attribute on the same
element). At its most general, it is a comma-separated list of
media ranges with optional accept parameters, as defined in section
14.1 of [ RFC2616 ] as the
field value of the accept request header.
In its simplest case, this is just a media type, such as "image/png" or "application/xml", but it may also contain asterisks, such as "image/*" or "*/*", or lists of acceptable media types, such as "image/png, image/gif, image/jpeg". The user agent must combine this list with
its own list of acceptable media types by taking the intersection,
and then use the resulting list as the field value of the For instance, if the attribute specifies the value "image/png, image/gif, image/jpeg", but the user agent does not accept images of type "image/gif" then the resultant accept header would contain "image/png, image/jpeg". A user agent must imitate similar behavior
when using other methods than HTTP. For instance, when
accessing files in a local filestore, If a value for the content type is not given, "*/*" must be used for its value. For the current list of registered content types, please consult [ MIMETYPES ]. |
| Coordinates | Comma separated list of Length s used in defining areas. |
| Datetime | Date and time information, as defined by the type
dateTime in [
XMLSCHEMA ] except that the timezone part is required. |
| HrefTarget | Name used as destination for results of certain actions, with legal values as defined by NMTOKEN . |
| LanguageCode | A language code. The values should conform to [ RFC3066 ] or its successors. |
| LanguageCodes | A comma-separated list of language ranges with optional q parameters, as defined in section 14.4 of [ RFC2616 ] as the field value of the Accept-Language request header. Individual language codes should conform to [ RFC3066 ] or its successors. |
| Length | Either a number, representing a number of pixels, or a percentage, representing a percentage of the available horizontal or vertical space. Thus, the value "50%" means half of the available space. |
| LocationPath | A location path as defined in [ XPATH ]. |
| MediaDesc |
A comma-separated list of media descriptors as described by [ CSS2 ]. The default is |
| Number | One or more digits |
| QName | An [ XMLNS ]-qualified name. See QName for a formal definition. |
| QNames | One or more white space separated QName values |
| Text | A character string. |
| URI | An Internationalized Resource Identifier Reference, as defined by [ IRI ]. |
| URIs | A space-separated list of URIs as defined above. |
Fw: [XHTML 2] Section 5.5 quality values. PR #7799
State: Open
Resolution: None
User: None
Notes:
Fw: [XHTML 2] Section 5.5 intersection of
mime-types PR
#7800
State: Open
Resolution: None
User: None
Notes:
This section is normative .
Many of the modules in this document define the required attributes for their elements. The elements in those modules may also reference zero or more attribute collections. Attribute collections are defined in their own modules, but the meta collection "Common" is defined in this section. The table below summarizes the attribute collections available.
| Collection | Module | Description |
|---|---|---|
| Core | Core Attributes Module | Basic attributes used to identify and classify elements and their content. |
| I18N | Internationalization Attribute Module | Attribute to identify the language of an element and its contents. |
| Bi-directional | Bi-directional Text Collection | Attributes used to manage bi-directional text. |
| Edit | Edit Attributes Module | Attributes used to annotate when and how an element's content was edited. |
| Embedding | Embedding Attributes Module | Attributes used to embed content from other resources within the current element. |
| Events | XML Events Module | Attributes that allow associating of events and event processing with an element and its contents. |
| Forms | XForms Module | Attributes that designate provide a mechanism of repeating table rows within a form. |
| Hypertext | Hyptertext Attributes Module | Attributes that designate characteristics of links within and among documents. |
| Map | Image Map Attributes Module | Attributes for defining and referencing client-side image maps. |
| Media | Media Attribute Module | Attribute for performing element selection based upon media type as defined in MediaDesc |
| Metainformation | Metainformation Attributes | Attributes that allow associating of elements with metainformation about those elements |
| Role | Role Attribute Module | Attribute for the specification of the "role" of an element. |
| Style | Style Attribute Module | Attribute for associating style information with an element and its contents. |
| Common | Attribute Collections Module | A meta-collection of all the other collections, including the Core , Bi-directional , Events , Edit , Embedding , Forms , Hypertext , I18N , Map , Media , Metainformation , Role , and Style attribute collections. |
Implementation: RELAX NG
Each of the attributes defined in an XHTML attribute collection
is available when its corresponding module is included in an XHTML
Host Language or an XHTML Integration Set (see [ XHTMLMOD ]). In such a situation, the
attributes are available for use on elements that are NOT in the
XHTML namespace when they are referenced using their
namespace-qualified identifier (e.g., xhtml:id ). The
semantics of the attributes remain the same regardless of whether
they are referenced using their qualified identifier or not. If
both the qualified and non-qualified identifier for an attribute
are used on the same XHTML namespace element, the behavior is
unspecified.
[XHTML2] Constraining attribute relationship PR
#7661
State: Suspended
Resolution: Defer
User: None
Notes:
This section is normative .
The Document Module defines the major structural elements for XHTML. These elements effectively act as the basis for the content model of many XHTML family document types. The elements and attributes included in this module are:
| Elements | Attributes | Content Model |
|---|---|---|
| html | Common , version ( CDATA ), xmlns ( URI = "http://www.w3.org/2002/06/xhtml2/"), xsi:schemaLocation ( URIs = "http://www.w3.org/2002/06/xhtml2/ http://www.w3.org/MarkUp/SCHEMA/xhtml2.xsd") | head , body |
| head | Common | title , ( access | handler | link | ev:listener | model | meta | style ) * |
| title | Common | PCDATA* |
| body | Common | ( Heading | Structural | List )* |
This module is the basic structural definition for XHTML
content. The html element acts as the root element for
all XHTML Family Document Types.
Note that the value of the xmlns declaration is defined to be
"http://www.w3.org/2002/06/xhtml2/". Also note that because the
xmlns declaration is treated specially by XML namespace-aware
parsers [ XMLNS ], it is
legal to have it present as an attribute of each element. However, any time the xmlns declaration is used in the
context of an XHTML module, whether with a prefix or not, the value
of the declaration must be
http://www.w3.org/2002/06/xhtml2/ .
Implementation: RELAX NG
The html element is the root element for all XHTML Family Document Types. The xml:lang attribute is required on this element.
Attributes
Need a normative definition for the version attribute
The version attribute needs a machine processable format so that document processors can reliably determine that the document is an XHTML Family conforming document.The head element contains information about the current document, such as its title, that is not considered document content. The default presentation of the head is not to display it; however that can be overridden with a style sheet for special purpose use. User agents may however make information in the head available to users through other mechanisms.
Attributes
Example
<head>
<title>My Life</title>
</head>
Every XHTML document must have a title element in the head section.
Attributes
The title element is used to identify the document. Since documents are often consulted out of context, authors should provide context-rich titles. Thus, instead of a title such as "Introduction", which doesn't provide much contextual background, authors should supply a title such as "Introduction to Medieval Bee-Keeping" instead.
For reasons of accessibility, user agents must always make the content of the title element available to users. The mechanism for doing so depends on the user agent (e.g., as a caption, spoken).
Example
<title>A study of population dynamics</title>
The title of a document is metadata about the document, and so a
title like <title>About W3C</title> is
equivalent to <meta about="" property="title">About
W3C</meta> .
The body of a document contains the document's content. The content may be processed by a user agent in a variety of ways. For example by visual browsers it can be presented as text, images, colors, graphics, etc., an audio user agent may speak the same content, and a search engine may create an index prioritized according to properties of the text.
Attributes
Example
<body id="theBody">
<p>A paragraph</p>
</body>
This section is normative .
This module defines all of the basic text container elements, attributes, and their content models that are structural in nature.
| Element | Attributes | Content Model |
|---|---|---|
| address | Common | (PCDATA | Text )* |
| blockcode | Common | (PCDATA | Text | Heading | Structural | List )* |
| blockquote | Common | (PCDATA | Text | Heading | Structural | List )* |
| div | Common | (PCDATA | Flow )* |
| h | Common | (PCDATA | Text )* |
| h1 | Common | (PCDATA | Text )* |
| h2 | Common | (PCDATA | Text )* |
| h3 | Common | (PCDATA | Text )* |
| h4 | Common | (PCDATA | Text )* |
| h5 | Common | (PCDATA | Text )* |
| h6 | Common | (PCDATA | Text )* |
| p | Common | (PCDATA | Text | List | blockcode | blockquote | pre | table )* |
| pre | Common | (PCDATA | Text )* |
| section | Common | (PCDATA | Flow )* |
| separator | Common | EMPTY |
The content model for this module defines some content sets:
Implementation: RELAX NG
The address element may be used by authors to supply contact information for a document or a major part of a document such as a form.
Attributes
Example
<address href="mailto:webmaster@example.net">Webmaster</address>
This element indicates that its contents are a block of "code" (see the code element). This element is similar to the pre element, in that whitespace in the enclosed text has semantic relevance. As a result, the default value of the layout attribute is relevant .
Attributes
Example of a code fragment:
<blockcode class="Perl">
sub squareFn {
my $var = shift;
return $var * $var ;
}
</blockcode>
Here is how this might be rendered:
sub squareFn {
my $var = shift;
return $var * $var ;
}
This element designates a block of quoted text.
Attributes
An excerpt from 'The Two Towers', by J.R.R. Tolkien, as a blockquote
<blockquote cite="http://www.example.com/tolkien/twotowers.html"> <p>They went in single file, running like hounds on a strong scent, and an eager light was in their eyes. Nearly due west the broad swath of the marching Orcs tramped its ugly slot; the sweet grass of Rohan had been bruised and blackened as they passed.</p> </blockquote>