Open In App

Use of blockquote, q and cite tags in HTML

HTML | blockquote Tag: The <blockquote> tag in HTML is used to display the long quotations (a section that is quoted from another source). It changes the alignment to make it unique from others. It contains both opening and closing tags.

Syntax:



<blockquote>
        <p>The quote is input here.</p>
</blockquote>

Example: In this example, we will use <blockquote> inside the paragraph.

HTML | Tag: The <q> tag is used to provide small quotations to the HTML content, in this case, the browser simply puts a quotation around the content inside the tag. This tag is also known as inline quotation which means it will not break to the next line.



Syntax:

<q> name or something else </q>

Example: In this example, we have one paragraph and in that, we are using <q> tag.

HTML | cite Tag: The <cite> tag in HTML is used to define the title of a work. The tag in HTML4.1 define the citation and in HTML5 define the title of work. It displays the text in italic format.

Syntax:

<cite> Something you want </cite>

Example: In this example, we will use <cite> tag inside the paragraph.


Article Tags :