address

<address> 要素は、最も近い<article> 要素またはbodyの連絡先を意味します。<body> 要素の場合は、文書全体としての連絡先となります。

カテゴリー
フロー・コンテンツ、パルパブル・コンテンツ
配置場所
フロー・コンテンツが置ける場所。
内容
フロー・コンテンツ。ただし、ヘディング・コンテンツ(h1~h6)、セクショニング・コンテンツ(articleasidenavsection)、headerfooteraddressを除く。
属性
グローバル属性

accesskey, autocapitalize, autofocus, class, contenteditable, data-*, dir, draggable, enterkeyhint, hidden, id, inputmode, is, itemid, itemprop, itemref, itemscope, itemtype, lang, nonce, spellcheck, style, tabindex, title, translate

サンプル

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<title>HTML5 › address</title>
</head>
<body>
<h1>HTML5 › address</h1>
<p>
これはHTML5のaddress要素のサンプルです。
</p>
<address>
<a href="../people/duke-togo/">デューク東郷</a>
</address>
</body>
</html>