How to specify a text which is an extended quotation in HTML ? Last Updated : 30 Sep, 2020 Comments Improve Suggest changes Like Article Like Report The <blockquote> tag in HTML is used to display the long quotations (a section that is quoted from another source). It changes the alignment to make it unique from others. It contains both opening and closing tags. Syntax: <blockquote> Contents... </blockquote> Example 1: HTML <!DOCTYPE html> <html> <head> <title> How to specify a text which is an extended quotation? </title> </head> <body> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> How to specify a text which is an extended quotation? </h3> <blockquote> GeeksforGeeks: A computer science portal for geeks </blockquote> </body> </html> Output: Example 2: In this example, we will add the cite attribute. The cite attribute holds the URL that specifies the source of the quotation. HTML <!DOCTYPE html> <html> <head> <title> How to specify a text which is an extended quotation? </title> </head> <body> <h1 style="color:green;"> GeeksforGeeks </h1> <h3> How to specify a text which is an extended quotation? </h3> <blockquote cite = "www.geeksforgeeks.org"> GeeksforGeeks: A computer science portal for geeks </blockquote> </body> </html> Output: Comment More infoAdvertise with us Next Article How to specify a text which is an extended quotation in HTML ? V vkash8574 Follow Improve Article Tags : Web Technologies HTML HTML-Questions Similar Reads How to Add a Short Quotation using HTML? For defining a short quotation by using an <q> tag. It is used to insert quotation texts on a web page, i.e. a portion of texts different from the normal texts. Syntax:<q> Quotation Text... </q>Example 1: The example below shows how to Add a Short Quotation using HTML5. html <!D 1 min read How to specify an alternate text for an image in HTML ? The alternative text for an image is useful when the image not displayed/loaded. If the image is not loaded the its alternative text is displayed on the web page. Alternative text is the alternative information for an image. Example 1: In this example, the image path contains the image so it will di 1 min read How to add quotations and citations to the web pages using HTML ? In this article, we will see how to add quotations and citations to the web pages using HTML. When we are creating a website or a blog, we face many situations where we want to highlight a certain text. We can use HTML to do the same. HTML provides us with many tags such as <blockquote>,<q 3 min read How to add section that is quoted from another source using HTML? The <blockquote> tag in HTML is used to display the long quotations (a section that is quoted from another source). It changes the alignment to make it unique from others. It contains both opening and closing tags. Syntax:<blockquote> Contents... </blockquote>Example 1: The example 1 min read How to define a part of text in an alternate voice or mood using HTML5 ? In this article, we define a part of a text in an alternate voice or mood by using the <i> tag in the HTML document. It is used to display the content in the italic style. Generally, it is used to display the technical term, phrase, or important words of some different language or technology. 1 min read Like