HTML Quotation
HTML quotation are used to insert qouted text in the website. This is a part of texts different from the normal text in the webpage. To put a quotation you should use HTML q and blockquote.
HTML q tag
HTML q tag is used to write small quotation.
Example:
<p>
Nelson Mandela said:
<q>
The greatest glory in living lies not in never falling, but in rising every
time we fall. </q> </p>
time we fall. </q> </p>
Run Example
HTML blockquote tag
HTML blockquote tag is used to write large quotation.
Example:
<p>
Skylar Grey said:
</p>
<blockquote> Your personal life, your professional life, and your creative life are all intertwined. I went through a few very difficult years where I felt like a failure. But it was actually really important for me to go through that. Struggle, for me, is the most inspirational thing in the world at the end of the day - as long as you treat it that way. </blockquote>
<blockquote> Your personal life, your professional life, and your creative life are all intertwined. I went through a few very difficult years where I felt like a failure. But it was actually really important for me to go through that. Struggle, for me, is the most inspirational thing in the world at the end of the day - as long as you treat it that way. </blockquote>
Run Example
Quotations and Citation Tags of HTML
HTML blockquote tag is used to write large quotation.
| Tags | Description |
|---|---|
| address | It is used to define the contact information of the document writer. |
| abbr | It defines the abbreviation or an acronym. |
| bdo | It defines the direction of the text. |
| blockquote | It is used to define the large quotations. |
| q | It is used to put the small quotations. |
| cite | It defines the title of source of the quotation. |
| define | It is used to define a definition term. |