HTML <address> for Contact Information Explain
The HTML <address> element defines contact information (author/owner) of a document or article.
The <address> element is usually displayed in italic. Most browsers will add a line break before and after the element.
Html Code:
<!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>
Html Code Result:
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
Written by John Doe.
Visit us at:
Example.com
Box 564, Disneyland
USA
Post a Comment