<q> HTML Tag

In this article we will discuss about the the use of <q> tag in HTML.
  • 2186

The <q> tag stands for quotation marks. This tag is used to put the double quotation mark on the text on which it has been applied. 

HTML Code:

<html>

<head>

    <title></title>

</head>

<body><pre>

    Every one should have a <q>goal</q> in their life and without the <q>goal</q>their life does

    not have any mean.Gir kr sda <q>smbhlna</q>sikho,aur supath pr chlna sikho,apne path ki

    bahao ko,paro tle kuchna sikho.</pre>

</body>

</html>

 
Ouput:
Every one should have a goal in their life and without the goal their life does
    not have any mean.Gir kr sdasmbhlna sikho,aur supath pr chlna sikho,apne path ki
    bahao ko,paro tle kuchna sikho.

Here we see that the word goal and smbhla are coming in double quotes as we have applied the <q> tag on them.

Ask Your Question 
 
Got a programming related question? You may want to post your question here
 
© 2020 DotNetHeaven. All rights reserved.