-
Hajipur, Bihar, 844101
Hajipur, Bihar, 844101
HTML5 Basics
HTML Introduction
HTML Editors
HTML Basic
HTML Elements
HTML Attributes
HTML Headings
HTML Paragraphs
HTML Styles
HTML Formatting
HTML Quotations
HTML Comments
HTML Styling and Design
HTML Links and Media
HTML Layout and Structure
HTML Tables
HTML Lists
HTML Block & Inline
HTML Div
HTML Classes
HTML Id
HTML Head
HTML Layout
HTML Responsive
HTML Computercode
HTML Semantics
HTML Forms
HTML Forms
HTML Form Attributes
HTML Form Elements
HTML Input Types
HTML Input Attributes
Input Form Attributes
HTML Graphics
HTML APIs
HTML Advanced Topics
HTML provides special tags to quote text, cite sources, and indicate abbreviations or definitions. These tags give context and meaning to quoted or referenced content.
Tag | Purpose | Example Use |
---|---|---|
<blockquote> |
Displays a long quotation (block format) | Quoting a paragraph from a source |
<q> |
Short inline quotation | Quoting a few words in-line |
<cite> |
Cites a source (books, articles, websites) | Indicating where the quote came from |
<abbr> |
Defines an abbreviation | e.g., HTML, CSS |
<address> |
Provides contact information | Email, physical address, etc. |
<bdo> |
Overrides text direction | For right-to-left or left-to-right |
<blockquote>
– Block Quote<blockquote>
The journey of a thousand miles begins with one step.
</blockquote>
Displays the text indented on a new line.
<q>
– Inline Quote<p>He said, <q>Practice makes perfect.</q></p>
Adds quotes around the sentence automatically.
<cite>
– Citation<p><cite>The Great Gatsby</cite> by F. Scott Fitzgerald</p>
Usually shown in italic by default.
<abbr>
– Abbreviation<p><abbr title="HyperText Markup Language">HTML</abbr> is the standard language of the web.</p>
Displays a tooltip with the full form on hover.
<address>
– Contact Information<address>
Written by John Doe<br>
Visit us at: www.example.com<br>
Email: contact@example.com
</address>
Typically rendered in italic and new lines.
<bdo>
– Bi-directional Override<bdo dir="rtl">This text is right-to-left.</bdo>
Useful for displaying languages like Arabic or Hebrew.
Q1. Use <blockquote>
to quote a famous proverb.
Q2. Write a sentence with an inline quote using <q>
.
Q3. Cite the book "1984" by George Orwell using <cite>
.
Q4. Use <abbr>
to show the full form of HTML with a tooltip.
Q5. Provide your contact address using the <address>
tag.
Q6. Create a <bdo>
tag to display text from right to left.
Q7. Combine <q>
and <cite>
in one sentence.
Q8. Add an <abbr>
for "CSS" with its full form.
Q9. Format a paragraph that ends with a cited book title.
Q10. Use <address>
to show email and phone number of a person.
HTML5 Basics
HTML Introduction
HTML Editors
HTML Basic
HTML Elements
HTML Attributes
HTML Headings
HTML Paragraphs
HTML Styles
HTML Formatting
HTML Quotations
HTML Comments
HTML Styling and Design
HTML Links and Media
HTML Layout and Structure
HTML Tables
HTML Lists
HTML Block & Inline
HTML Div
HTML Classes
HTML Id
HTML Head
HTML Layout
HTML Responsive
HTML Computercode
HTML Semantics
HTML Forms
HTML Forms
HTML Form Attributes
HTML Form Elements
HTML Input Types
HTML Input Attributes
Input Form Attributes
HTML Graphics
HTML APIs
HTML Advanced Topics