The HTML <blockquote> Tag is employed to define a block of text which is quoted from another source. The Browser usually displays the content within the <blockquote> Tag as indented text.

If you would like to insert an extended quote then use and for brief or inline quotes use the <q> Tag.

The <blockquote> Tag specifies a neighborhood that’s quoted from another source.

Browsers usually indent blockquote elements (look at the instance below to ascertain the way to remove the indentation).

Example:-

<!DOCTYPE html>  
<html>  
<head>  
    <title>HTML Blockquote tag</title>  
</head>  
<body>  
    <h2>Example of HTML blockquote tag</h2>  
    <p>A Great Motivational Quote :</p>  
   <blockquote cite="https://www.brainyquote.com/authors/erin_cummings">  
    <p>  
     At the end of the day, you are solely responsible for your success and your failure. And the sooner you realize that, you accept that, and integrate that into your work ethic, you will start being successful. As long as you blame others for the reason you aren't where you want to be, you will always be a failure.  
     </p>  
   </blockquote>  
 </body>  
</html>  

Output:-

HTML Blockquote tag

Example of HTML blockquote tag


A Great Motivational Quote :

At the end of the day, you are solely responsible for your success and your failure. And the sooner you realize that, you accept that, and integrate that into your work ethic, you will start being successful. As long as you blame others for the reason you aren’t where you want to be, you will always be a failure.


Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *