Advertisement
❮ Previous: <abbr> Next: <area> ❯

<address>

HTML <address> (Address) Tag

Example

<address>
	You can contact at <a href="http://www.example.com/contact">
	www.example.com</a>.<br>
	If you see any bugs, please <a href="mailto:contact@example.com">
	contact us</a>.<br>
	123 floor<br>
	New York<br>
	USA
</address>

Try this code ❯

Meaning

<address> element marks up text indicating authorship / ownership of information.

It allocated at the beginning or end of a Web document and usually is rendered in italics in the absence of CSS.

Note: Use this element for providing authorship / ownership of information.

Version: HTML 2, 3.2, 4, 4.01, 5


Standard Syntax

<address>Address</address>


Advertisement

Global Attributes

<address> element also supports the Global Attributes in HTML.


Event Attributes

<address> element also supports the Event Attributes in HTML.


By Default CSS Value(s)

Most of the browsers will display the <address> element with the following by default value(s).


address {
  display: block;
  font-style: italic;
}

Related Tags

<body>,
<nav>,
<article>,
<aside>,
<h1> - <h6>,
<hgroup>,
<footer>,
<section> and
<header>

❮ Previous: <abbr> Next: <area> ❯
Advertisement