HTML
Blockquote
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.
Blockquote Breakdown
Here is the breakdown of HTML Blockquote
Blockquote Example
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>