Filter (Advanced Search)
Downloads
0
Views
225
Video

Video is not available... Embedded is previous playlist.

Details

The HTML <cite> tag defines the title of a creative work (e.g. a book, a poem, a song, a movie, a painting, a sculpture, etc.).

Note: A person's name is not the title of a work.

The text in the <cite> element usually renders in italic.

 


<!DOCTYPE html>
<html>
<head>
<title>HTML cite element</title>
</head>
<body>

<p>The HTML cite element defines the title of a work.</p>
<p>Browsers usually display cite elements in italic.</p>

<img src="/images/cat.jpg" width="220" height="277" alt="Kitten">
<p><cite>My Kitten</cite> is so cute.</p>

</body>
</html>



Ad