×

Html & Html5

The World's best Software Development Study Portal

HTML Quotation


1. q tag is used for short quotations:
The HTML q element defines a short quotation. Browsers usually insert quotation marks around the q element.

Let's understand this by the following example:


<p> Ittraining classes: <q> We provide training in angular js,

digital marketing </q> </p>

Output:



Ittraining classes: We provide training in angular js,

digital marketing



2. HTML abbr for Abbreviations:
The HTML abbr element defines an abbreviation. Marking abbreviations can give useful information to browsers, translation systems and search-engines.

Let's understand this by the following example:


<p> The <abbr title="World Health Organization"> WHO </abbr> was founded in 1948. </p> <abbr title="Hyper Text Transfer Protocol"> HTTP </abbr>


Output:


The WHO was founded in 1948.



HTTP


3. HTML address tag:
The HTML address element defines contact information (author/owner) of a document or an article. The address element is usually displayed in italic. Most browsers will add a line break before and after the element.

Let's understand this by the following example:

<p> <b>HTML Address Tag </b> </p> <address> Visit us at: <br> ittrainingclasses.in <br> Plot no.1746,sector <br> Gurgaon </address>


Output:


HTML Address Tag

Visit us at:
ittrainingclasses.in
Plot no.1746,sector
Gurgaon


4. HTML cite for Work Title: The HTML cite element defines the title of a work. Browsers usually display cite elements in italic.

Let's understand this by the following example:


<p> <b> HTML Cite Tag </b> </p> <img src="image/himalayas.jpg" width="220" height="177" alt="The Scream"> <p> <cite> Incredible Himachal </cite> travel with us. </p>


Output:


HTML Cite Tag

The Scream

Incredible Himachal travel with us.



5. HTML bdo tag The HTML bdo defines bi-directional override. It is used to override the current text direction:

Let's understand this by the following example:


<p> <b> HTML bdo Tag </b> </p> <bdo dir="rtl"> This line will be written from right to left </bdo> <br> <bdo dir="ltr"> This line will be written from left to right </bdo> <br>


Output:


HTML bdo Tag

This line will be written from right to left
This line will be written from left to right