html
  1. html-blockquote-tag

HTML <blockquote> Tag

  • HTML <blockquote> tag is used to designate quoted content in HTML.
  • It's commonly used to set off a quotation from the surrounding text.

 <blockquote>
        This is the quoted text.
 </blockquote>
Try Playground

Importance of the Blockquote Tag

Additionally, you can use attributes with the <blockquote> tag to provide more information or context.

  • cite: Specifies the URL of the source of the quotation

<blockquote cite="https://additionalsheet.com/">
   Clink Me!
</blockquote>
Try Playground

These attributes are optional, but they can be valuable for providing attribution or linking back to the original source of the quote.

Published on: