English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

HTML-Referenzhandbuch

Vollständiges Verzeichnis der HTML-Tags

HTML: <address> Tag

Das HTML-<address>-Tag definiert die Kontaktinformationen des nächsten <article> oder <body> im HTML-Dokument. Traditionell wird der Text, der im <address>-Tag gefunden wird, als kursiver Text dargestellt. Dieses Tag wird auch normalerweise als <address>-Element bezeichnet.

Online-Beispiel

w3Kontaktinformationen von codebox.com:

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
<title>Grundlagen-Tutorial-Website(oldtoolbag.com)</title> 
</head>
<body>
<address>
  Sie können uns unter:<br>
  oldtoolbag.com<br>
  123 Irgendwo St.<br>
  Stadt, Bundesland
</address>
</body>
</html>
Testen Sie, ob ‹/›

Browserkompatibilität

IEFirefoxOperaChromeSafari

Alle gängigen Browser unterstützen den <address>-Tag.

Definition und Verwendungshinweise

Der <address>-Tag definiert den Autor des Dokuments/Contact information of the owner.

Wenn das <address>-Element innerhalb des <body>-Elements liegt, dann stellt es den Autor der Dokumentation dar/Contact information of the owner.

Wenn das <address>-Element innerhalb des <article>-Elements liegt, dann stellt es den Autor des Artikels dar/Contact information of the owner.

Der Text des <address>-Elements wird normalerweise inKursivschrift. Die meisten Browser fügen vor und nach diesem Element einen Zeilenumbruch hinzu.

Hinweise und注意事项

Hinweis:Der <address>-Element wird normalerweise in <footer> weitere Informationen des Elements.

Der <address>-Element liegt innerhalb des <body>-Tags.
The <address> tag provides HTML 4.01Die Kontaktinformationen, die am nächsten am <body>-Tag liegen.
The <address> tag provides HTML5contact information of the most recent <article> or <body>.
The <address> tag is usually placed in <footer>, used for <article> or <body>.
Do not place the publication date within the <address> tag, but use the <time> tag instead.
for IE versions earlier than 9IE browsers, please use HTML5shiv, which is a JavaScript solution that can provide support for new HTML5elements provide support, such as: <header>, <main>, <article>, <section>, <aside>, <nav>. <footer>.
Most browsers will display the text within the <address> tag in italic, but you can change this behavior using CSS.

HTML 4.01 and HTML5differences between

HTML 4.01 The <article> tag is not supported, so in HTML 4.01 In the document, the <address> tag always definesdocumentof the author/Contact information of the owner.

Global Attributes

The <address> tag is supported Global Attributes of HTML.

Event Attributes

The <address> tag is supported HTML Event Attributes.