<cite> HTML Tag

Here we are using Cite tag of HTML
  • 2182

Cite tag in HTML basically use for providing an additional information which is not take place in page. It is like a Tool Tip. The <cite></cite> is the syntax for Cite tag. when you RoleOver your mouse on the text then this information will appear as a Tool Tip. It is used for providing some help for anything which you not want to add on page.

Example 1

<html>
<head>
    <title></title>
</head>
<body>
    <cite title="It is for giving a description for anything when you RoleOver with mouse on it">
        HTML CITE</cite> RoleOver ur mouse on HTML CITE.
</body>
</html>
 

Output

HTML CITE RoleOver ur mouse on HTML CITE.

In this example we apply CITE tag for a Text.

Example 1

<html>
<head>
    <title></title>
</head>
<body>
    <cite title="Click for Submit">
        <input id="Button1" type="submit" value="Submit" />
    </cite>RoleOver your mouse on Button.
</body>
</html>
 

Output

RoleOver your mouse on Button.

In this example we apply CITE tag for a Button.

Ask Your Question 

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