- HTML Tutorial
- HTML Introduction
- HTML Editors
- HTML Basic
- HTML Comments
- HTML Elements
- HTML Attributes
- HTML Id & Classes
- HTML Skeletal Tags
- HTML Heading Tags
- HTML Paragraph Tag
- HTML Line Break Tag
- HTML Pre Tag
- HTML Anchor Tag
- HTML Image Tag
- HTML Horizontal Line Tag
- HTML Inline & Block
- HTML Inline
- HTML Block
- HTML LInks
- HTML Images
- HTML Formatting
- HTML Head
- HTML Head
- HTML Title
- HTML Meta Elements
- HTML Favicon
- HTML Style
- HTML List
- HTML Lists
- HTML Unordered List
- HTML Ordered List
- HTML Description List
- HTML Table
- HTML Tables
- HTML Table Headers
- HTML Table Styling
- HTML Table Colgroup
- HTML Form
- HTML Forms
- HTML Form Elements
- HTML Form Attributes
- HTML Input Types
- HTML Input Attributes
- HTML Form Actions
- HTML Semantic
- HTML Semantics
- HTML Graphics & Media
- HTML Canvas
- HTML SVG
- HTML Video & Audio
- HTML Plug-ins
- iFrames in HTML
- HTML Miscellaneous Tags
- HTML Code Tag
- HTML Entities
- HTML Quotation
- HTML Global Attributes
- HTML Obsolete Tags
- HTML Emojis
- HTML Symbols
- HTML Events
- HTML Colors
HTML Quotation
The HTML <q>
and <blockquote>
tags are used for handling quotations in HTML. They are semantically meaningful elements that help organize quoted content on a webpage.
1. <q>
Tag
The <q>
element is used to represent inline quotations. It is meant for short quotes that are part of a sentence and should be displayed inline with quotation marks automatically added by the browser.
Syntax:
<q>Quoted text here</q>
Example:
<!DOCTYPE html>
<html>
<head>
<title>HTML Quotation Example</title>
</head>
<body>
<p>He said, <q>HTML is a markup language</q> during the presentation.</p>
</body>
</html>
Output:
He said, "HTML is a markup language" during the presentation.
2. <blockquote>
Tag
The <blockquote>
element is used to represent longer quotations that are usually displayed as a block, separated from other content. It adds semantic meaning to quoted content and typically indents the quoted text.
Syntax:
<blockquote>
Quoted text here
</blockquote>
Example:
<!DOCTYPE html>
<html>
<head>
<title>HTML Quotation Example</title>
<style>
blockquote {
font-style: italic;
color: #555;
border-left: 4px solid #7f06ff;
padding: 10px;
margin: 20px 0;
}
</style>
</head>
<body>
<h2>Famous Quote:</h2>
<blockquote>
"The journey of a thousand miles begins with a single step."
—Lao Tzu
</blockquote>
</body>
</html>
Output:
"The journey of a thousand miles begins with a single step."
—Lao Tzu
(The text will be indented, styled with a left border, and italicized.)
Comparison: <q>
vs <blockquote>
Summary
<q>
: Used for short inline quotations. The browser automatically adds quotation marks.<blockquote>
: Used for long block-style quotations that are displayed as a distinct visual block.