Address for semantic learning

HTML <address>elements allow the author to provide contact information for its most recent <article>or <body>ancestor elements. In the latter case, it applies to the entire document.

Instructions for use:

  • When representing an arbitrary address that has nothing to do with contact information, use <p>elements instead of <address>elements.
  • This element cannot contain any information other than contact information, such as the publication date (this should be included in the <time>element).
  • Usually, the <address>element can be placed in the <footer>element of the current section , if it exists.

        <address>
            You can contact author at <a href="http://www.somedomain.com/contact">www.somedomain.com</a>.<br>
            If you see any bugs, please <a href="mailto:[email protected]">contact webmaster</a>.<br>
            You may also want to visit us:<br>
            Mozilla Foundation<br>
            1981 Landings Drive<br>
            Building K<br>
            Mountain View, CA 94043-0801<br>
            USA
        </address>
    

Guess you like

Origin www.cnblogs.com/baimeishaoxia/p/12677640.html