HTML Quotation and Citation Elements

HTML Quotation and Citation Elements

HTML <q>  - Short Quotations
The HTML <q> element defines a short quotation.

Browsers usually insert quotation marks around the <q> element.
<p><q>You must be the change wish to see in the world</q>Mahatma Gandhi<p>

HTML <blockquote> - Long Quotations
 The HTML <blockquote&gt element defines a quoted section. Browsers usually indent <blockquote&gt elements.

<p><blockquote>Only when the last tree has died and the last river been poisoned and the last fish been caught will we realise we canot eat money.<blockquote>  CREE INDIAN PROPHECY</p>

HTML <abbr> for Abbreviations 

The HTML <abbr> element defines an abbreviation or an acronym. Marking abbreviations can give useful information to browsers, translation systems and search engines.

<p>The <abbr
title="International Cricket Council">ICC</abbr> was founded in 1909.</p>


HTML <address > for Contact Information

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

<address>Written by Jozz.<br> Visit us at:<br > www.mytechstuffs.com<br></address>


HTML <cite> for Work Title

 The HTML <cite> element defines the title of a work. Browsers usually displays <cite> elements in italic.

<p> <cite>Harry Potter </cite> written by J. K. Rowling </p>

HTML <bdo> for Bi-Directional Override 

The HTML <bdo>element defines bi-directional override. If your browser supports bdo, this text will be written from right to left.

<bdo dir="rtl">This text will be written from right to left</bdo>

<!DOCTYPE html>
<html>
<head>
<title>Quotation .....</title>
</head>
<body>
<p><q>You must be the change wish to see in the world</q>Mahatma Gandhi<p>
<p><blockquote>Only when the last tree has died and the last river been poisoned and the last fish been caught will we realise we canot eat money.</blockquote> CREE INDIAN PROPHECY</p>
<p>The <abbr title="International Cricket Council">ICC</abbr> was founded in 1909.</p>
<address>Written by Jozz.<br> Visit us at:<br >
www.mytechstuffs.com<br></address>
<p> <cite>Harry Potter </cite> written by J. K. Rowling </p>
<bdo dir="rtl">This text will be written from right to left</bdo>
</body>
</html>
Output
Quotation .....

You must be the change wish to see in the worldMahatma Gandhi

Only when the last tree has died and the last river been poisoned and the last fish been caught will we realise we canot eat money.
CREE INDIAN PROPHECY

The ICC was founded in 1909.

Written by Jozz.
Visit us at:
www.mytechstuffs.com

Harry Potter written by J. K. Rowling

This text will be written from right to left

0 Comment "HTML Quotation and Citation Elements"