Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML <cite> Tag


Example

Define the title of a work with the <cite> tag:

<p><cite>The Scream</cite> by Edward Munch. Painted in 1893.</p>
Try it Yourself »

Definition and Usage

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

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


Browser Support

Element
<cite> Yes Yes Yes Yes Yes

Global Attributes

The <cite> tag also supports the Global Attributes in HTML.


Event Attributes

The <cite> tag also supports the Event Attributes in HTML.


Related Pages

HTML DOM reference: Cite Object


Default CSS Settings

Most browsers will display the <cite> element with the following default values:

Example

cite {
  font-style: italic;
}
Try it Yourself »