Which choice is the best way to mark up this layout?
<h4>Mailing Address</h4> <address> 6410 Via Real <br /> Carpinteria, CA 93013<br /> <a href="mailto:[email protected]">[email protected]</a> </address>
<h4>Mailing Address</h4> <p> <em> 6410 Via Real <br /> Carpinteria, CA 93013<br /> <a href="mailto:[email protected]">[email protected]</a> </em> </p>
<h4><strong>Mailing Address</h4> <address><em> 6410 Via Real <br> Carpinteria, CA 93013<br> <a href="mailto:[email protected]">[email protected]</a> </em></address>
<p><strong>Mailing Address</strong></p> <p> <em> 6410 Via Real <br /> Carpinteria, CA 93013<br /> <a href="mailto:[email protected]">[email protected]</a> </em> </p>
Source: W3Schools The <address> tag defines the contact information for the author/owner of a document or an article. The contact information can be an email address, URL, physical address, phone number, social media handle, etc. The text in the <address> element usually renders in italic, and browsers will always add a line break before and after the <address> element.
The <address> tag defines the contact information for the author/owner of a document or an article. The contact information can be an email address, URL, physical address, phone number, social media handle, etc. The text in the <address> element usually renders in italic, and browsers will always add a line break before and after the <address> element.