What is a blockquote element in HTML?

We use the blockquote element in an HTML document while citing content that belongs to another source. It changes the look of the text from the general format to emphasize and distinguish it.

Syntax

The blockquote element must be inside tags(<>, </>): the opening <blockquote> tag and the closing (</blockquote>).

When to use a <blockquote> element

Often the <cite> attribute is also included inside the <blockquote> tag to specify the source link of the content.

We typically use the blockquote element when writing a blog, or in specific websites that require proofs and citations.

Note: This <cite> attribute is intended to point to information explaining the context or the reference for the quote.

blockquote illustration

Code

<!DOCTYPE html>
<html>
<head> </head>
<body>
<h1>The "blockquote" element</h1>
<p>This example uses "cite" attribute inside a blockquote tag.</p>
<blockquote cite="https://www.educative.io/shoteditor/6029778760499200">
"Welcome to this Edpresso shot about "blockquote" element.
</blockquote>
</body>
</html>
"cite" and "blockquote" elements

Free Resources

Copyright ©2025 Educative, Inc. All rights reserved