<footer>
    <address>
        더 많은 정보는 문의하세요.
        <a href="mailto:master@example.com">홍길동</a>.
    </address>
    <p><small>© copyright 2038 Example Corp.</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="ko">
    <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 나의 웹사이트. All Rights Reserved.</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">+1 234 567 890</a>
    </address>
</header>
<adress>마지막 수정: 2011-11-18 23:37:50</adress>
<footer>마지막 수정: <time>2011-11-18 23:37:50</time></footer>