HTML Quotation are used to put a short quotation on your website. To do so, you need to use HTML q tag and HTML blockquote tag.
Tag | Description |
---|---|
<abbr> | Defines abbreviation or acronym. |
<address> | Defines contact info for the author/owner of a document. |
<bdo> | Defines text direction, left-to-right or right-to-left. |
<blockquote> | Defines a section quoted from another source. |
<cite> | Defines the title of a work, book, article, or publication. |
<q> | Defines short inline quotation, enclosed in quotation marks. |
<!DOCTYPE html> <html> <head> <title>HTML Quotations</title> </head> <body> <h3>Intern T point</h3> <!--Normal text--> <p> The quick brown fox jumps over the lazy dog<br /> </p> <!--Inside <bdo> tag--> <p> <bdo dir="rtl" >The quick brown fox jumps over the lazy dog</bdo > </p> <p> Welcome to <abbr title="Intern T Point">ITP</abbr> </p> <address> <p> Address:<br /> Noida,<br /> Noida Uttar Pradesh – 201301 </p> </address> </body> </html>
HTML Quotation : – HTML blockquote tag is used to define a large quoted section. If you have a large quotation then put the entire text within <blockquote>………….</blockquote> tag.