The blockquote element is used to indicate the quotation of a large section of text from another source.
Browsers generally render blockquote text as indented text.
Here is the breakdown of HTML Blockquote
Below example will demonstrate the basic architecture of HTML Blockquote.
<!doctype html>
<html>
<head>
<title>HTML Blockquote Example</title>
</head>
<body>
<blockquote>
Every great developer you know got there by solving problems they were unqualified to solve until they actually did it.
</blockquote>
</body>
</html>