Monday, 7 November 2011

Identify Quotation with <q>

The <q> tag defines a short quotation. The browser will insert quotation marks around the quotation.

Example Code :

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled 1</title>
</head>

<body>

<p>
Here is my short quotation - <q>a short quotation</q>
</p>

</body>

</html>

 

Result

quote

No comments:

Post a Comment