Die einzige normative Version ist die englische Version unter:
http://www.w3.org/TR/2014/REC-html5-20141028/
Der Index aller Seiten dieser Übersetzung ist zu finden unter:
http://www.html5-deutsch.de/TR/html5/Overview.html
Diese Übersetzung kann Fehler enthalten. Kommentare oder Korrekturvorschläge zu dieser deutschen Übersetzung bitte per E-Mail an den Übersetzer.
Weitere Übersetzungen von W3C-Dokumenten finden Sie auf den Seiten des Übersetzers.
Übersetzer: Stefan Schumacher (www.schumacher-netz.de)
Informationen zum
Urheberrecht.
Im Text der Spezifikation können sich Kommentare des Übersetzers befinden. Diese Kommentare sind mit der gleichen Hintergrundfarbe wie dieser Absatz hinterlegt. Sie sind nicht Teil der Spezifikation und dienen nur der Erläuterung einzelner Begriffe oder Abschnitte.
Dieses Kapitel wird noch bearbeitet und ist noch nicht fertiggestellt. Es kann noch englischen Text und Fehler in der Übersetzung enthalten. Der Übersetzungsvorgang besteht aus mehreren Einzelabschnitten, einer Rohübersetzung, einer ersten Korrektur, erneutes Gegenlesen zum Original, externes Lektorat und Freigabe. Dieses Dokument ist noch nicht als endgültige Version freigegeben und wird nur zu Informationszwecken für Interessierte zur Verfügung gestellt.
Ein Vokabular und dazugehörige APIs für HTML und XHTML
html
-Elementhead
element followed by a body
element.manifest
— Application cache manifesthtml
element's start tag can be omitted
if the first thing inside the html
element is not a comment.html
element's end tag can be omitted if
the html
element is not immediately followed by a comment.interface HTMLHtmlElement : HTMLElement {};
The html
element represents the root of an HTML document.
Authors are encouraged to specify a lang
attribute on the root
html
element, giving the document's language. This aids speech synthesis tools to
determine what pronunciations to use, translation tools to determine what rules to use, and so
forth.
The manifest
attribute gives the address of
the document's application cache manifest, if there is one. If the attribute is present,
the attribute's value must be a valid non-empty URL potentially surrounded by
spaces.
The manifest
attribute only has an effect during the early stages of document load.
Changing the attribute dynamically thus has no effect (and thus, no DOM API is provided for this
attribute).
For the purposes of application cache
selection, later base
elements cannot affect the resolving of relative URLs in manifest
attributes, as the attributes are processed before those elements are seen.
The window.applicationCache
IDL
attribute provides scripted access to the offline application cache mechanism.
The html
element in the following example declares that the document's language
is English.
<!DOCTYPE html> <html lang="en"> <head> <title>Swapping Songs</title> </head> <body> <h1>Swapping Songs</h1> <p>Tonight I swapped some of the songs I wrote with some friends, who gave me some of the songs they wrote. I love sharing my music.</p> </body> </html>