Curriculum
Course: HTML Basic
Login

Curriculum

HTML Basic

HTML Introduction

0/1

HTML Editors

0/1

HTML Attributes

0/1

HTML Paragraphs

0/1

HTML Formatting

0/1

HTML Comments

0/1

HTML Favicon

0/1

HTML Page Title

0/1

HTML Iframes

0/1

HTML Java Script

0/1

HTML File Paths

0/1

HTML Symbols

0/1
Text lesson

HTML address for Contact Information

HTML <address> for Contact Information

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>

 

Click to Learn

HTML <cite> for Work Title

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>

 

Click to Learn

HTML <bdo> for Bi-Directional Override

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>

 

Click to Learn