<q>


<q> tag is used when some text/content need to placed in double quotes.

Syntax:

<q>Content to be placed with in double quotes here...</q>

Example:

<html> <head> <title>HTML Tutorial</title> </head> <body> <p> This site contains free <q>HTML</q>,<q>CSS</q>,<q>DOTNET</q>,<q>SQL</q> AND <q>WCF</q> tutorials. </p> </body> </html>

Output:

This site contains free HTML,CSS,DOTNET,SQL AND WCF tutorials.