• Post category:HTML

Blockquote Tag in HTML | Explained

Blockquote Tag in HTML

If you do not know what is the use of blockquote tags in HTML. You come to the right place to learn that. It is used to create a space at the beginning for a block of quotes.

Example:

<p>Quote for Motivation :</p>
<blockquote>Nature has given us all the pieces required to achieve exceptional wellness and health, but has left it to us to put these pieces together</blockquote>

Output:

blockquote tag in html

  1. Here, we create a <p> tag and put some text inside it.
  2. Then we created <blockquote> tag and we put some quotes inside it.
  3. See the output, the space is displayed at beginning of the quote.

Leave a Reply