Programming Code Center(PCC)
[HTML]

(PCC)::[How-to-make-Formatting-document-author-owner-information-with-the-address-element-in-HTML]::[html]

File Name : index.html

<!DOCTYPE html>
<html>
<body>

<p>The HTML address element defines contact information (author/owner) of a document or article.</p>

<address>
Written by John Doe.<br> 
Visit us at:<br>
Example.com<br>
Box 564, Disneyland<br>
USA
</address>

</body>
</html>

Output :

The HTML address element defines contact information (author/owner) of a document or article.

Written by John Doe.
Visit us at:
Example.com
Box 564, Disneyland
USA