HTML <cite> tag
HTML <cite> tag : Definition
• The HTML <cite> tag defines the title of a creative work such as a movie, books, paintings, television programs, websites, literature, sculpture, etc.
• The text inside the <cite> tag by default rendered in italics in most of the browser, but this style can be overridden by using CSS.
<cite> tag example :
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML cite Tag Example</title>
</head>
<body>
<p>My favorite movie is <cite>Avengers</cite>.</p>
<p>My another favorite movie is <cite>Spider man</cite>.</p>
</body>
</html>
OUTPUT :
My favorite movie is Avengers.
My another favorite movie is Spider man.