
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
HTML Quotations
The HTML Quotations is used to create quotation in HTML. The HTML <q> tag is used to define a short quotation. It is a block-level element and HTML <blockquote> tag is used to define a section that is quoted from another source. It is also a block-level element.
Syntax
Following is the syntax −
<q>quote</q>
Or
<blockquote>quote</blockquote>
Example
Let us see an example of HTML Quotations −
<!DOCTYPE html> <html> <style> body { color: #000; height: 100vh; background-color: #8BC6EC; background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%); text-align: center; } </style> <body> <h1>HTML Quotations</h1> <q>I'm a quote element with some dummy text.</q> <blockquote>I'm a block quote element with some dummy text.</blockquote> </body> </html>
Output
- Related Articles
- How to indicate long quotations in an HTML document?
- JavaScript code to extract the words in quotations
- How to set the type of quotation marks for embedded quotations with JavaScript?
- HTML DOM HTML Object
- Difference between HTML and HTML 5
- Parse HTML with PHP's HTML DOMDocument
- HTML Basics
- HTML Tag
- HTML Tag
- HTML Tag
- HTML Tag
- HTML Tag
- HTML Tag
- HTML Tag
- HTML Tag

Advertisements