Summary -

In this topic, we described about the <cite> tag along with detailed example.

Cite element is used to define the title of work. Cite element uses <cite> tag. <cite> tag is used for representing a citation such as book or a statement etc,. Any text in between <cite>..</cite> defines it as citation to browsers.

<cite> element is nested element. Browsers will display <cite> elements as italic. <cite> tag defines a title of work in HTML5. <cite> tag defines as citation in HTML4.01.

Syntax -

<cite>.. text here.. </cite>

Example -

<!DOCTYPE html>
<html>
	<head>
		<title> Cite element example.. </title>
	</head>
	<body>
		<p><cite>TutorialsCampus</cite> objective is to deliver the point
		to point online content on various technologies (including 
		technical and non-technical) to encourage the reader to learn
		 and gain expertise on their desired skills without any 
		 conditions and restrictions.. </p>
	</body>
</html>

Output -

TutorialsCampus objective is to deliver the point to point online content on various technologies (including technical and non-technical) to encourage the reader to learn and gain expertise on their desired skills without any conditions and restrictions..