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.
<!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>
<!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>
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