Mrkunlex
Definition and Usage
The <cite> tag defines the title of a work (e.g. a book, a song, a movie, a TV show, a painting, a sculpture, etc.).
Note: A person's name is not the title of a work.
Differences Between HTML 4.01 and HTML5
In HTML5, the <cite> tag defines the title of a work.
In HTML 4.01, the <cite> tag defines a citation.
<!DOCTYPE html>
<html>
<body>
<img src="img_the_scream.jpg" width="220" height="277" alt="The Scream">
<p><cite>The Scream</cite> by Edward Munch. Painted in 1893.</p>
</body>
</html>
Copy code