Home > Article > Web Front-end > How to use html address tag
html The address tag is used to define the contact information of the document author/owner and is usually included among other information in the footer element. The text of the address element is usually rendered in italics, and most browsers add line breaks before and after the element.
#html How to use address tag?
html The address tag defines the contact information of the document author/owner.
Note:
If the 208700f394e4cf40a7aa505373e0130b element is inside a 6c04bd5ca3fcae76e30b72ad730ca86d element, it represents the contact information of the author/owner of the document.
If the 208700f394e4cf40a7aa505373e0130b element is inside an 23c3de37f2f9ebcb477c4a90aac6fffd element, it represents the contact information for the author/owner of the article. The text of the
208700f394e4cf40a7aa505373e0130b element is usually rendered in italics. Most browsers will add line breaks before and after this element.
Note:
The 208700f394e4cf40a7aa505373e0130b tag should not be used to describe postal addresses unless this information is part of contact information.
The 208700f394e4cf40a7aa505373e0130b element is usually included with other information within the c37f8231a37e88427e62669260f0074d element.
html address tag example
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <address> Written by <a href="mailto:webmaster@example.com">Jon Doe</a>.<br> Visit us at:<br> Example.com<br> Box 564, Disneyland<br> USA </address> </body> </html>
The above is the detailed content of How to use html address tag. For more information, please follow other related articles on the PHP Chinese website!