Horje
What is HTML Quotations

In this chapter we will go through the <blockquote>,<q>, <abbr>, <address>, <cite>, and <bdo> HTML elements.

The <q> HTML element indicates that the enclosed text is a short inline quotation. Most modern browsers implement this by surrounding the text in quotation marks. This element is intended for short quotations that don't require paragraph breaks; for long quotations use the <blockquote> element.


Example of HTML Quotations

<blockquote cite="http://www.worldwildlife.org/who/index.html">
For 60 years, WWF has worked to help people and nature thrive. As the world's leading conservation organization, WWF works in nearly 100 countries. At every level, we collaborate with people around the world to develop and deliver innovative solutions that protect communities, wildlife, and the places in which they live.
</blockquote>

Full Example of HTML Quotations

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<p>Here is a quote from WWF's website:</p>

<blockquote cite="http://www.worldwildlife.org/who/index.html">
For 60 years, WWF has worked to help people and nature thrive. As the world's leading conservation organization, WWF works in nearly 100 countries. At every level, we collaborate with people around the world to develop and deliver innovative solutions that protect communities, wildlife, and the places in which they live.
</blockquote>

</body>
</html>

Output should be:

Full Example of HTML Quotations





Related Articles
What is HTML Quotations HTML Quotations
How to create HTML <blockquote> for Quotations HTML Quotations
How to create HTML <q> for Short Quotations HTML Quotations
How to create HTML <abbr> for Abbreviations HTML Quotations
How to create HTML <address> for Contact Information HTML Quotations
How to create HTML <cite> for Work Title HTML Quotations
How to create HTML <bdo> for Bi-Directional Override HTML Quotations

Single Articles
Example of HTML QuotationsHTML Quotations
Full Example of HTML QuotationsHTML Quotations

Read Full:
HTML Quotations
Category:
Web Tutorial
Sub Category:
HTML Quotations
Uploaded by:
Admin
Views:
141


Reffered: https://www.w3schools.com/html/tryit.asp?filename=tryhtml_formatting_intro2