- HTML Basics
- HTML Home
- HTML Basics
- HTML Document Structure
- HTML Data Types
- HTML Attributes
- HTML Fonts
- HTML Headings
- HTML Character Entities
- HTML Horizontal Line
- HTML Line Break
- HTML Paragraph
- HTML Citation Definition
- HTML Quotations
- HTML Comments
- HTML Styles
- HTML Formatting
- HTML CSS
- HTML Tags
- HTML Basic Tags
- HTML All Tags
- HTML Root Tags
- HTML Metadata Tags
- HTML Section Tags
- HTML Head Heading Tags
- HTML Flow Tags
- HTML Phrasing Tags
- HTML Embedded Tags
- HTML Interactive Tags
- HTML Meta Tags
- HTML Texts
- HTML Text Formatting
- HTML Physical Style Text
- HTML Logical Style Text
- HTML Organizing Text
- HTML Arranging Text
- HTML Displaying Lists
- HTML List
- HTML Links Tables
- HTML Links URLs
- HTML Links
- HTML URL Encode
- HTML Tables
- HTML Images Colors
- HTML Images Colors
- HTML Images
- HTML Color Codes
- HTML Canvas
- HTML Backgrounds
- HTML Forms
- HTML Forms
- HTML Form Tag
- HTML Input Tag
- HTML Button Tag
- HTML Multiple-Choice
- HTML Select Tag
- HTML Option Tag
- HTML Optgroup Tag
- HTML Textarea Label
- HTML Fieldset Legend
- HTML Datalist Tag
- HTML Keygen Tag
- HTML Output Tag
- HTML Progress Tag
- HTML Meter Tag
- HTML Submit Form
- HTML enctype Attribute
- HTML action Attribute
- HTML Method Attribute
- HTML Get Method
- HTML Post Method
- HTML Interactive
- HTML Interactive Web
- HTML Details Summary
- HTML Menu Tag
- HTML Command Tag
- HTML KBD Tag
- HTML Time Tag
- HTML Multimedia
- HTML Multimedia
- HTML Multimedia Tags
- HTML Audio Video
- HTML Embedded Multimedia
- HTML EMBED Tag
- HTML OBJECT Tag
- HTML FIGURE FIGCAPTION
- HTML Advance
- HTML Blocks
- HTML Classes
- HTML Iframes
- HTML JavaScript
- HTML Layouts
- HTML Responsive
- HTML Test
- HTML Online Test
- Give Online Test
- All Test List
HTML Quotations
Quotation
Below is the quoted paragraph:
This is block-quoted paragraph. Here you will learn all about quotations in HTML with examples. This tutorial includes short quotations in HTML with examples and long quotations in HTML with examples. To specify short quotations in HTML, use <q> and to specify long quotations in HTML, then use <blockquote>.
HTML Short Quotations
The HTML <q> element is used to specify the short quotation in HTML document. Here is an example shows how to use short quotation in HTML:
<!DOCTYPE html> <html> <head> <title>HTML Quotations Example</title> </head> <body> <p>This is HTML Quotations Tutorial. <br /> Here you will learn about <br /> <q>HTML short quote and long quote</q> <br /> with examples.</p> </body> </html>
Here is the sample output produced by the above HTML quotation (short quote) example:

HTML Long Quotations
HTML <blockquote> element is used to specify block (long) quoted texts. Here is an example shows how to use long quotations in HTML:
<!DOCTYPE html> <html> <head> <title>HTML Quotations Example</title> </head> <body> <p>This is HTML Long Quotations Example.</p> <blockquote> There are two type of quotations in HTML. The name of the first type is short quotations and the name of the second type is long quotations. You can create long quotations in HTML using <blockquote> element. </blockquote> </body> </html>
Here is the sample output produced by the above HTML long quotations example code:

« Previous Tutorial Next Tutorial »