<footer>
    <address>
        詳しい情報につきましてはお問い合わせください。
        <a href="mailto:master@example.com">山田太郎</a>。
    </address>
    <p><small>©copyright2038ExampleCorp.</small></p>
</footer>
ブラウザーで実際に表示される様子
<article>
    <h2>記事タイトル</h2>
    ... 内容
    <footer>
        <address>
            <span>記事の作成者</span><br>
            <a href="https://example.com/author">山田太郎</a><br>
            <a href="mailto:author@example.com">author@example.com</a>
        </address>
    </footer>
</article>
<!DOCTYPE html>
<html lang="ja">
    <head>
        <meta charset="UTF-8">
        <title>Exampleページ</title>
    </head>
    <body>
        <h1>Exampleウェブサイト</h1>
        <p>ウェブサイトの紹介やコンテンツがここに入ります。</p>
        
        ....
        
        <footer>
            <!-- 文書全体の連絡先 -->
            <address>
                サイトに関するお問い合わせ:
                <a href="mailto:admin@example.com">admin@example.com</a>
            </address>
            <p><small>©2025私のウェブサイト。AllRightsReserved.</small></p>
        </footer>
    </body>
</html>
<header role="banner">
    <a href="/" rel="home">会社ロゴ</a>
    <nav>
        <a href="index.html">ホームページ</a>
        <a href="about.html">会社紹介</a>
        <a href="contact.html">連絡先</a>
    </nav>
    <address>
        <span>会社名</span><br>
        <a href="mailto:info@example.com">info@example.com</a><br>
        <a href="tel:+1234567890">+1234567890</a>
    </address>
</header>
<address>最終更新:2011-11-18 23:37:50</address>
<footer>最終更新:<time>2011-11-18 23:37:50</time></footer>