HTML address tag

HTML <address> Tag is used to show off the contact information of the document or an article. It is usually placed inside the <footer> tag to mark its position in the page.

Note : Content inside the <address> tag is rendered italic and some modern browsers add line breaks before & after the <address> tag in the web page.




Written by Mark Smith.
Find us at:
Example.org
P.O.Box 1787, Heartlane
INDIA
Tip : HTML <address> tag supports all global attributes inside its closure.

Default CSS settings for <address> tag are:


address {
display: block;
font-style: italic;
}

You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *