Which HTML tag is used for long quotations?
Analysis & Theory
`<blockquote>` is used for long quotations and is usually displayed as indented text.
Which tag is used for short, inline quotations?
Analysis & Theory
`<q>` is used for short inline quotations, and browsers often render it with quotation marks.
Which HTML tag is used to reference the source of a quote or creative work?
Analysis & Theory
`<cite>` is used to define the title or source of a quoted or referenced work.
Which tag is used to define abbreviations or acronyms in HTML?
Analysis & Theory
`<abbr>` defines an abbreviation and can include a `title` attribute to show the full form on hover.
What attribute is commonly used with `<abbr>` to show the full form?
Analysis & Theory
`title` is used to provide the full form or meaning of the abbreviation.
What is the visual default style of `<blockquote>` in most browsers?
Analysis & Theory
`<blockquote>` is displayed as an indented block by default.
Is it valid to use `<q>` inside a `<p>` tag?
Analysis & Theory
`<q>` is an inline element and can be used inside a paragraph.
Which tag is used to indicate a citation or reference to a source?
Analysis & Theory
`<cite>` defines the title or reference to a creative work or quote source.
What does the browser usually render around text inside a `<q>` tag?
Analysis & Theory
Browsers typically render double quotation marks around text in `<q>`.
Can `<blockquote>` contain other elements like `<p>`?
A
Yes, it's a block container
B
No, only text is allowed
C
Only if styled with CSS
Analysis & Theory
`<blockquote>` is a block-level element that can contain paragraphs, lists, and other block elements.