Horje
How to create HTML <cite> for Work Title

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 .


Example of HTML <cite> for Work Title

<img src="https://itupto.com/avatar.png" width="220" height="277" alt="The Scream">
<p><cite>The Scream</cite> by Edvard Munch. Painted in 1893.</p>

Example of HTML <cite> for Work Title

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>
<p>The HTML cite element defines the title of a work.</p>
<p>Browsers usually display cite elements in italic.</p>
<img src="https://itupto.com/avatar.png" width="220" height="277" alt="The Scream">
<p><cite>The Scream</cite> by Edvard Munch. Painted in 1893.</p>
</body>
</html>

Output should be:

Example of HTML <cite> for Work Title





Related Articles
HTML Quotations HTML Quotations
How to create HTML <blockquote> for Quotations HTML Quotations
How to create HTML <q> for Short Quotations HTML Quotations
How to create HTML <abbr> for Abbreviations HTML Quotations
How to create HTML <address> for Contact Information HTML Quotations
How to create HTML <cite> for Work Title HTML Quotations
How to create HTML <bdo> for Bi-Directional Override HTML Quotations

Single Articles
Example of HTML <cite> for Work Title HTML Quotations
Example of HTML <cite> for Work Title HTML Quotations

Category :
Web Tutorial
Sub Category :
HTML Quotations
Uploaded by :
Admin


Read Article
https://horje.com/learn/1434/reference