<abbr> - Abbreviations
<blockquote> - Quotation
<q> - Short quotation
Let's understand by example:
<abbr> - Abbreviations
<abbr> - Abbreviations </abbr>
Output:
- Abbreviations
I am using bootstrap here so you can't see the output exactly you can copy the code and try to your HTML file.
<blockquote> - Quotation
<blockquote> - Quotation </blockquote>
Output:
- Quotation : A quotation is the repetition of a sentence, phrase, or passage from speech or text that someone has said or written. In oral speech.
<q> - Short quotation
<q> - Short quotation </q>
Output:
- Short quotation
I am putting all the three example in a separate file you see to click the live demo page
Complete Example:
Index.html
<!DOCTYPE html>
<html>
<head>
<title>
HTML Quotation and Abbreviations Tags
</title>
</head>
<body>
<h3> - Quotation - </h3>
<blockquote> - Quotation </blockquote>
<hr>
<h3> - Abbreviations - </h3>
<abbr>Quotation : A quotation is the repetition of a sentence, phrase, or passage from speech or text that someone has said or written. In oral speech. </abbr>
<hr>
<h3> - Short quotation - </h3>
<q>Short quotation</q>
</body>
</html>
Are you facing problems in understanding this?
download now