Tag <blockquote> HTML Reference

CSS Reference (New)


Example

A long quotation is marked up as follows:

<blockquote>
Here is a long quotation here is a long quotation here is a long quotation here is a long quotation here is a long quotation here is a long quotation here is a long quotation here is a long quotation here is a long quotation.
</blockquote>

Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

1. Definition and Usage

The <blockquote> tag defines a long quotation.

Browsers usually indent <blockquote> elements.


2. Tips and Notes

Tip: Use <q> for short quotations.


3. Differences Between HTML 4.01 and HTML5

In HTML 4.01, the <blockquote> tag defines a long quotation.

In HTML5, the <blockquote> tag specifies a section that is quoted from another source.


4. Differences Between HTML and XHTML

Note: To validate a <blockquote> element as strict HTML/XHTML, it must contain only other block-level elements, like this:

<blockquote>
<p>Here is a long quotation here is a long quotation</p>
</blockquote>


5. Optional Attributes

DTD indicates in which HTML 4.01/XHTML 1.0 DTD the attribute is allowed. S=Strict, T=Transitional, and F=Frameset.

Attribute Value Description DTD
cite URL Specifies the source of a quotation STF

6. Standard Attributes

The <blockquote> tag supports the Standard Attributes in HTML.


7. Event Attributes

The <blockquote> tag also supports the Standard Event Attributes in HTML.


Relative articles

Creating A CSS3 Dropdown Menu #4
Creating CSS3 dropdown menu #4

Creating CSS3 Dropdown Menu #4

This is our forth CSS3 menu. This will colored tabs with dropdown submenus (animated with transition effects). Make attention, that all new effects (transitions) will work only in most fresh browsers like FF, Chrome, Safary browsers, possible in Opera too. But not in IE (transitions still not available here). Anyway – lets test new menu.

(more…)


HTML5 Game Development – Lesson 9
HTML5 Game Development - Lesson 9

HTML5 Game Development – Lesson 9

Today we continue the series of articles on game development in HTML5 using canvas. For today I have prepared new game. I have updated our lesson 4 and added fireballs, enemies and collision detection. So, now our dragon can cast fireballs and kill enemies (plus, we have scores now). Now this game is much more interactive.

Our previous article you can read here: Developing Your First HTML5 Game – Lesson 8.
(more…)