HTML cite Tag

HTML <cite> Tag: The HTML <cite> tag describes the title of a work. And the HTML cite tag in HTML4.1 define the citation and in HTML5 define the title of work. It displays the text in italic format.

Example: Title of a book, movie, TV show, etc.Attributes

HTML<cite>Tag

The HTML<cite> tag supports both the global and the event attributes.

Syntax: <cite> Text </cite>

Browser compatibility

The HTML<cite> tag is supported by different type of browsers.

  • Chrome
  • Firefox
  • Opera
  • Safari
  • InternetExplorer

Example:

<!DOCTYPE html>
<html>
<body>
<img src="https://tutorials.freshersnow.com/wp-content/uploads/2019/04/HTML-Tutorial.jpg" width="200" height="250" alt="Freshersnow.com">
<p><cite>Freshersnow Tutorials</cite> this website wil helps you to learn all programming languages</p>
</body>
</html>

Output:

HTML cite tag