Loading

Quipoin Menu

Learn • Practice • Grow

html / Quotation
interview

Q1. What HTML tags are used for quotations?
Use <q> for short inline quotations, and <blockquote> for longer block-level quotations.

Q2. What does the cite attribute do in <blockquote>?
The cite attribute specifies the URL of the source document for the quotation, providing reference information.

Q3. What is the <cite> tag used for?
The <cite> tag defines the title of a creative work (book, article, poem, etc.) and is typically rendered in italic.

Q4. How does the browser display <q> content?
Most browsers automatically add quotation marks around content inside <q> tags.

Q5. What is the difference between <q> and <blockquote>?
<q> is inline and adds quotes automatically, while <blockquote> is block-level and typically indented.