|
The example of address tag in HTML
<address>
ERCIM<br />
2004, route des Lucioles<br />
Sophia-Antipolis<br />
06410 Biot France<br />
</address>
Working example of address tag
ERCIM
2004, route des Lucioles
Sophia-Antipolis
06410 Biot France
The html address tag is used for defining address of the author in webpage.
This is contact information of author of webpage used to add. The information can be used in address tag of HTML.
Address tag is supported by all web browsers.
Text under address tag is shown in italic form.
Address tag of HTML supports all common attribute and event attributes.
Common Attribute of Address Tag
| Attribute |
Value |
Explaination |
| id |
ID |
unique id document for element |
| class |
classname |
list of CSS classes |
| style |
StyleSheet |
associated style information of style tags |
| title |
Text |
information about an element shown on mouse over cursor |
| lang |
LanguageCode |
Language Code of the element |
| dir |
(ltr|rtl) |
direction for weak/neutral text |
Events Attribute of Address Tag
| Attribute |
Value |
Explaination |
| onclick |
event |
Event Fire on mouse button was clicked |
| ondblclick |
event |
Event Fire on a mouse button was double clicked |
| onmousedown |
event |
Event Fire on a mouse button was pressed down |
| onmouseup |
event |
Event Fire on a mouse button was released |
| onmouseover |
event |
Event Fire on a mouse was moved onto |
| onmousemove |
event |
Event Fire on a mouse was moved within |
| onmouseout |
event |
Event Fire on a mouse was moved away |
| onkeypress |
event |
Event Fire on a key was pressed and released |
| onkeydown |
event |
Event Fire on a key was pressed down |
| onkeyup |
event |
Event Fire on a key was released |
|