Tag for Extended Quotations
The HTML <blockquote> element represents an extended quotation from another source. It is semantic quotation markup, not a general-purpose indentation tool.
Good markup describes what content means before deciding how it should look.
<blockquote cite="https://example.com/source">
<p>An extended quotation goes here.</p>
</blockquote>
The cite attribute can identify a source URL, but it is not normally shown to readers. Provide visible attribution separately when readers need it.
Use CSS margins or padding for indentation. A blockquote should actually be a quotation.
Existing blockquote CSS demoAn extended quotation from another source.
Browsers commonly add margins, but that visual default is not its semantic purpose.
Yes.
Add visible attribution or a link in the surrounding content.
No. Use CSS.
Author & Instructor at plus2net
I write and maintain practical tutorials on Python, PHP, SQL, JavaScript, HTML, jQuery, and web development at plus2net. The tutorials focus on clear explanations, working examples, and code that readers can test and adapt while learning.