HTML Dog
Skip to navigation

HTML Tag: address

Contact information for a page or section.

Optional Attributes

Global attributes

Example


<h1>A Page About Peas by A. N. Author</h1>

<!-- stuff -->

<footer>
    <!-- more stuff -->
    <address>
        <p>Contact A. N. Author:</p>
        <ul>
            <li>0123-456-7890</li>
            <li><a href="mailto:an_author@noplaceinteresting.com">Email A. N. Author</a></li>
            <li><a href="http://www.noplaceinteresting.com/contactme/">A. N. Author's Site of Web on the Intertube</a></li>
        </ul>
    </address>
    <!-- other stuff -->
</footer>