A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/html/html-address-tag/ below:

HTML < address> Tag - GeeksforGeeks

HTML < address> Tag

Last Updated : 11 Jul, 2025

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.

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> 

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>
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>
Best Practices for Using the <address> Tag

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4