HTML

Chapter 35: Marking-up Quotes

Inline with <q>

The q element can be used for a quote that is part of a sentence:

<p>She wrote <q>The answer is 42.</q> and everyone agreed.</p>

Quotation marks
Version ≤ 4.01

Quotation marks should not be added. User agents should (in HTML 4.01) resp. must (in HTML 4.0) render them
automatically.

Version = 5

Quotation marks must not be added. User agents will render them automatically.

Source URL (cite attribute)

The cite attribute can be used to reference the URL of the quoted source:

<p>She wrote <q cite="http://example.com/blog/hello-world">The answer is 42.</q> and everyone
agreed.</p>

Note that browsers typically don’t show this URL, so if the source is relevant, you should add a hyperlink (a element)
in addition.

Block with <blockquote>

The blockquote element can be used for a (block-level) quote:

<blockquote>
 <p>The answer is 42.</p>
</blockquote>

Source URL (cite attribute)

The cite attribute can be used to reference the URL of the quoted source:

<blockquote cite="http://example.com/blog/hello-world">
 <p>The answer is 42.</p>
</blockquote>

Note that browsers typically don’t show this URL, so if the source is relevant, you should add a hyperlink (a element)
in addition (see the section Citation/Attribution about where to place this link).

Citation/Attribution
Version ≤ 4.01

The citation/attribution should not be part of the blockquote element:

<blockquote cite="http://example.com/blog/hello-world">
 <p>The answer is 42.</p>
</blockquote>
<p>Source: <cite><a href="http://example.com/blog/hello-world" rel="external">Hello
World</a></cite></p>

You can add a div element to group the quote and the citation, but it exists no way to associate them semantically.

The cite element can be used for the reference of the quoted source (but not for the author name).
Version = 5

The citation/attribution (e.g., the hyperlink giving the source URL) can be inside the blockquote, but in that case it
must be within a cite element (for in-text attributions) or a footer element:

<blockquote cite="http://example.com/blog/hello-world">
 <p>The answer is 42.</p>
 <footer>
 <p>Source: <cite><a href="http://example.com/blog/hello-world" rel="external">Hello
World</a></cite></p>
 </footer>
</blockquote>

The cite element can be used for the reference of the quoted source, or for the name of the quote’s author.

Recent Posts

Unlocking the Secrets of JSON.stringify(): More Than Meets the Eye

JSON (JavaScript Object Notation) is a lightweight data-interchange format widely used in web development. At…

2 months ago

How to Handle AJAX GET/POST Requests in WordPress

AJAX (Asynchronous JavaScript and XML) is a powerful technique used in modern web development that…

3 months ago

Page Speed Optimization: Post-Optimization Dos and Don’ts

Introduction After successfully optimizing your website for speed, it's essential to maintain and build upon…

3 months ago

Ultimate Guide to Securing WordPress Folders: Protect Your Site from Unauthorized Access

Securing your WordPress folders is crucial to safeguarding your website from unauthorized access and potential…

4 months ago

HTML CSS PHP File Upload With Circle Progress Bar

Creating a file upload feature with a circular progress bar involves multiple steps. You'll need…

4 months ago

Using WP Rocket with AWS CloudFront CDN

Integrating WP Rocket with AWS CloudFront CDN helps to optimize and deliver your website content…

4 months ago