HTML < address> Tag Last Updated : 11 Jul, 2025 Comments Improve Suggest changes 23 Likes Like Report The <address> tag in HTML is used to define contact information for the author or owner of a document or an article. It is typically used for information such as an address, email, or phone number.The <address> element is a block-level element by default.The content inside <address> is usually displayed in italics and may have a line break after it.It should not be used for generic addresses (like physical locations), but only for authorial contact information.Note: The <address> tag also supports the Global Attributes and Event Attributes in HTML. HTML <!DOCTYPE html> <html lang="en"> <body> <address> GeeksforGeeks.org </address> </body> </html> The <address> tag contains the contact information for GeeksforGeeks.Examples of HTML address Tag html <!DOCTYPE html> <html lang="en"> <body> <address> Organization Name: GeeksforGeeks<br> Website: <a href="https://www.geeksforgeeks.org/"> GeeksforGeeks.org</a><br> Visit us:<br> GeeksforGeeks<br> 710-B, Advant Navis Business Park,<br> Sector-142, Noida, Uttar Pradesh – 201305 </address> </body> </html> The <address> tag contains the contact information for GeeksforGeeks, including the organization name, website link, and physical address.Line breaks (<br>) are used to format the address for better readability.Styling the <address> Tag HTML <!DOCTYPE html> <html lang="en"> <head> <style> address { font-style: normal; /* Removes italic style */ color: #333; line-height: 1.5; } </style> </head> <body> <address> Organization Name: GeeksforGeeks<br> Website: <a href="https://www.geeksforgeeks.org/">GeeksforGeeks.org</a><br> Visit us:<br> GeeksforGeeks<br> 710-B, Advant Navis Business Park,<br> Sector-142, Noida, Uttar Pradesh – 201305 </address> </body> </html> The CSS within the <style> tag customizes the appearance of the <address> element.The font-style: normal; rule removes the default italic styling applied by browsers. Best Practices for Using the <address> TagUse <address> to enclose contact details of the document's author or owner.Avoid using <address> for unrelated contact information.Place <address> within relevant sections, like <footer>, to associate contact info appropriately. Create Quiz Comment V Vishal Chaudhary 2 Follow 23 Improve V Vishal Chaudhary 2 Follow 23 Improve Article Tags : Web Technologies HTML HTML-Tags Explore HTML BasicsHTML Introduction4 min readHTML Editors4 min readHTML Basics7 min readStructure & ElementsHTML Elements4 min readHTML Attributes7 min readHTML Headings3 min readHTML Paragraphs3 min readHTML Text Formatting4 min readHTML Block and Inline Elements3 min readHTML Charsets4 min readListsHTML Lists3 min readHTML Ordered Lists5 min readHTML Unordered Lists4 min readHTML Description Lists3 min readVisuals & MediaHTML Colors11 min readHTML Links Hyperlinks2 min readHTML Images7 min readHTML Favicon4 min readHTML Video4 min readLayouts & DesignsHTML Tables10 min readHTML Iframes4 min readHTML Layout4 min readHTML File Paths3 min readProjects & Advanced TopicsHTML Forms5 min readHTML5 Semantics5 min readHTML URL Encoding4 min readHTML Responsive Web Design11 min readTop 10 Projects For Beginners To Practice HTML and CSS Skills8 min readTutorial ReferencesHTML Tags - A to Z List15+ min readHTML Attributes Complete Reference8 min readHTML Global Attributes5 min readHTML5 Complete Reference8 min readHTML5 MathML Complete Reference3 min readHTML DOM Complete Reference15+ min readHTML DOM Audio/Video Complete Reference2 min readSVG Element Complete Reference5 min readSVG Attribute Complete Reference8 min readSVG Property Complete Reference7 min readHTML Canvas Complete Reference4 min read Like