q Element
Description
The q
element denotes content quoted from another source.
The style convention for the q
element is
to surround the quoted text with quotation marks.
Example
The following code uses the q
Element.
<!DOCTYPE HTML>
<html>
<body>
<p>
<q cite="http://en.wikipedia.org/wiki/Cascading_Style_Sheets">
The <dfn title="Cascading Style Sheets">CSS</dfn>
is a style sheet language used for describing the
look and formatting of a document written in a markup language.
</q><!--from ww w. j a v a2 s . co m-->
</p>
</body>
</html>