<footer>
    <address>
        For more information, please contact
        <a href="mailto:master@example.com">John Doe</a>.
    </address>
    <p><small>© copyright 2038 Example Corp.</small></p>
</footer>
Rendered Output
<article>
    <h2>Post Title</h2>
     ... content ...
    <footer>
        <address>
            <span>Author</span>
            <br>
            <a href="https://example.com/author">John Doe</a>
            <br>
            <a href="mailto:author@example.com">author@example.com</a>
        </address>   
    </footer>
</article>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Example Page</title>
    </head>
    <body>
        <h1>Example Website</h1>
        <p>Website introduction or content goes here.</p>
        
        ....
        
        <footer>
            <!-- Contact info for the entire document -->
            <address>
                Site inquiries:
                <a href="mailto:admin@example.com">admin@example.com</a>
            </address>
            <p><small>© 2025 My Website. All Rights Reserved.</small></p>
        </footer>
    </body>
</html>
<header role="banner">
    <a href="/" rel="home">Company Logo</a>
    <nav>
      <a href="index.html">Home</a>
      <a href="about.html">About</a>
      <a href="contact.html">Contact</a>
    </nav>
    <address>
        <span>Company Name</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>Last updated: 2011-11-18 23:37:50</adress>
<footer>Last updated: <time>2011-11-18 23:37:50</time></footer>