How to define contact information in HTML

1 Answer

0 votes
<!DOCTYPE html>
<html>
    <body>

        <p>Address:</p>

        <address>
            Headquarters 1130 M Street Sacramento<br />
            P.O. Box 914863 Sacramento<br />
            CA 92211-0102<br />
            USA
        </address>

    </body>
</html>

<!--
run:

-->

 



answered Dec 4, 2018 by avibootz
...