address要素

address要素は、個人や組織の連絡先情報を提供していることを示す要素になります。
※article要素内では、各記事での連絡先情報

address要素の説明図
address要素
記法

<address>連作先情報</address>

<!DOCTYPE html>
<html lang="ja">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>address要素に関して</title>
  </head>

  <body>
    <footer>
      <address>
        ブログ製作者:Tomoji<br />
        メール:tomoji@example.jp<br />
        リンク:<a href="https://10moji-blog.com/">明るい引きこもりのプログラミング日記</a>
      </address>
    </footer>
  </body>
</html>
出力結果