HTML blockquote Tag Last Updated : 11 Jul, 2025 Comments Improve Suggest changes Like Article Like Report The <blockquote> tag in HTML is used to define a section that is quoted from another source. It is typically displayed as an indented block to set it apart from the surrounding content.The <blockquote> tag should be used for longer quotations that require separation from the main text, while the <q> tag is more appropriate for shorter, inline quotations.Using the <blockquote> tag enhances the semantic structure of your HTML document, clearly indicating that a section of text is a quotation.The <blockquote> tag also supports the Global Attributes and Event Attributes in HTML. HTML <!DOCTYPE html> <html> <body> <p>Here is a famous quote:</p> <blockquote cite="https://www.geeksforgeeks.org/html/html-blockquote-tag/"> "The `<blockquote>` tag in HTML is used to define a block of text that is a quotation from another source." </blockquote> </body> </html> Output: Here is a famous quote: "The ` ` tag in HTML is used to define a block of text that is a quotation from another source."The <blockquote> tag wraps the quoted text, indicating that it is a block-level quotation.The cite attribute specifies the source of the quotation, providing a URL for reference.Syntax:<blockquote cite="https://www.example.com/"> This is a blockquote from an external source. </blockquote>Attribute:cite: Specifies the source of the quotation.Note: The content inside the <blockquote> tag is usually displayed with indentation by default in most browsers.More Examples of <blockquote> Tag:Quoting a Paragraph HTML <!DOCTYPE html> <html lang="en"> <body> <blockquote cite="www.geeksforgeeks.org"> GeeksforGeeks:A computer science portal for geeks </blockquote> </body> </html> Styling the <blockquote> Tag HTML <!DOCTYPE html> <html> <head> <style> blockquote { border-left: 4px solid #ccc; padding-left: 10px; margin-left: 20px; color: #555; font-style: italic; } </style> </head> <body> <blockquote> "The only limit to our realization of tomorrow is our doubts of today." </blockquote> </body> </html> The border-left property adds a left border to the <blockquote>, visually distinguishing it from the rest of the content.The padding-left and margin-left properties create space between the border and the text, and between the blockquote and the left edge of the container, respectively, enhancing readability.Best Practices Use for Long Quotations: Reserve the <blockquote> tag for longer, block-level quotes, while shorter quotes can use the <q> tag.Cite the Source: Use the cite attribute to provide the URL of the source for the quote, if available.Proper Nesting: Avoid nesting <blockquote> tags unless you are quoting a block that contains another block quote.Semantic Usage: Only use <blockquote> for actual quotations, not for styling or indentation.CSS Styling: Apply CSS for styling (e.g., margins, font styles) instead of relying on the browser's default rendering.Accessible Context: Ensure the quote is relevant to the surrounding content for accessibility and context clarity.Include Attribution: Provide visible attribution within the content or via adjacent text if the cite attribute is not used. Comment More infoAdvertise with us Next Article HTML < address> Tag A Ayuush Follow Improve Article Tags : Web Technologies HTML HTML-Tags Similar Reads HTML DOCTYPE Declaration HTML DOCTYPE (Document Type Declaration) is an instruction that appears at the beginning of an HTML document, before the <html> tag.Its primary role is to tell the web browser which version of HTML the page is written in, ensuring that the browser renders the content correctly. It is not an HT 4 min read HTML abbr Tag The <abbr> tag in HTML is used to represent abbreviations and provides additional information about them through the title attribute, which displays a tooltip when hovered over. It helps improve accessibility and SEO by offering context for the abbreviated text.It makes text clearer by explain 3 min read HTML acronym Tag The HTML <acronym> tag was used to define an acronym, providing a way to identify and explain abbreviated terms in web content. However, it's deprecated in favor of <abbr>, which serves the same purpose but is more semantically correct.Syntax:Â <acronym title=""> Short Form </acr 2 min read HTML < address> Tag The <address> tag in HTML is used to define contact information for the author or owner of a document or an article. It is typically used for information such as an address, email, or phone number.The <address> element is a block-level element by default.The content inside <address 3 min read HTML a Tag The <a> tag defines a hyperlink, which is used to link from one page to another. The most important attribute of the <a> element is the href attribute, which indicates the link's destination. This attribute determines where the user is directed upon clicking the link.HTML<a href="http 2 min read HTML applet Tag The applet tag in HTML was used to embed Java applets into any HTML document. The <applet> tag was deprecated in HTML 4.01, and its support has been completely discontinued starting from HTML 5. Alternatives available in HTML 5 are the <embed> and the <object> tags. Some browsers s 2 min read HTML area Tag This <area> tag is used in an HTML document to map a portion of an image to make it clickable by the end user. This specifies the location and size of the active region on an image, which can be clicked. Clicking on areas with href attributes directs to a specified URL or action.html<!DOCTY 3 min read HTML article Tag The HTML <article> tag defines a self-contained, independent piece of content like a blog post, news article, or comment. It is designed for content that can be independently distributed, shared, or reused, providing semantic meaning to the content.This tag is introduced in HTML5.HTML<!DOCT 3 min read HTML aside Tag The <aside> tag is used to describe the main object of the web page more shortly like a highlighter. It identifies the content that is related to the primary content of the web page but does not constitute the main intent of the primary page. The <aside> tag contains mainly author inform 2 min read HTML5 < audio> Tag The <audio> tag in HTML5 is used to embed audio content on a webpage. It allows you to play audio files like MP3, OGG, or WAV directly in the browser. The <audio> element provides attributes for controlling playback, such as play, pause, and volume.Using the <source> element enable 3 min read Like