The HTML <address>
tag defines contact details for a document’s author, such as email, phone, or social media, and is typically displayed in italics with line breaks before and after.
Example
<address> Written by John Doe.<br> Visit us at:<br> Example.com<br> Box 564, Disneyland<br> USA </address> |
The HTML <cite> tag represents the title of a creative work, like a book or movie, and is usually displayed in italics.
Example
<p><cite>The Scream</cite> by Edvard Munch. Painted in 1893.</p> |
The HTML <bdo>
tag is used to change the text direction, standing for Bi-Directional Override.
Example
<bdo dir=”rtl”>This text will be written from right to left</bdo> |