basics of website design banner photo

HTML

HTML 5

CSS 2.1

CSS 3

Reference

HTML <q> and <blockquote> Elements.

These two elements define quoted content, <q> being used for short quotes and <blockquote> for a long quotation that requires paragraph breaks.
When using <q> Firefox, Chrome, Safari and Opera will enclose the content in double quotation marks but Internet Explorer 9 adds single quotes and versions previous to IE9 dont support this element and do nothing at all.
With the <blockquote> element all the main browsers add white space before and after the element and indent the text.
Example:

This shows how short<q>quoted content</q>is displayed.
This shows a<blockquote> long quotation, a long quotation, a long quotation, a long quotation, a long quotation, a long quotation, a long quotation, a long quotation, a long quotation, a long quotation, a long quotation, a long quotation, a long quotation, a long quotation.</blockquote>.

Result:
This shows how short quoted content is displayed.
This shows a

long quotation, a long quotation, a long quotation, a long quotation, a long quotation, a long quotation, a long quotation, a long quotation, a long quotation, a long quotation, a long quotation, a long quotation, a long quotation, a long quotation.

<q> and <blockquote> Attributes

HTML 4 Element List