Loading...
HTML <address> Tag

HTML <address> Tag

In this tutorial, we will learn about address tag in HTML with the help of examples.


<address> Tag

Abbreviation tag <address> is used to define the contact information in a webpage.
This contact information belongs to anyone and can be an email address, URL, physical address, phone number, etc.
The contact information usually renders in italic and the browser will always add a line break before and after the <address> tag.

Syntax

<address>......</address>

Example

<!DOCTYPE html>
<html>
  <head>
    <title>Address Tag</title>
  </head>
  <body>
    <address>Cupertino, California, United States</address>
  </body>
</html>

Output

Cupertino, California, United States

In the above example, you can see that the text inside the <address> tag render in italic.


Global Attribute

Address Tag support all the global attributes of HTML.


Event Attribute

Address Tag support all the event attributes of HTML.


Next Tutorial

We hope that this tutorial helped you develop better understanding of the concept of Abbreviation tag in HTML.

Keep Learning : )

In the next tutorial, you'll learn about HTML address Tag.

- Related Topics