In this chapter, we will know in detail about <address> tag of HTML, we have already known about this tag in this chapter, we will know it in detail.If we want to write an address in a web page, then we use this tag of HTML.In an address, we can give someone’s email location phone number etc.
Address tags are used to display the official information of a web page.We can use the <address> tag in the header or footer of a web page.The content written in the <address> tag is italicized in most browsers.
Example:-
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Address Element</title>
</head>
<body>
<address>
Written By <a href="mailto:[email protected]">Josef</a><br />
Visit Us at:<br />
Example<br />
Box 564 Disneyland <br />
USA
</address>
</body>
</html>
Output:-

Browser Support:-
All modern browsers support HTML <address> tag.