cite

Represents the title of a creative work (book, song, film, etc.).

Description

The <cite> element represents the title of a creative work: a book, paper, essay, poem, song, film, TV show, game, painting, musical, exhibition, legal case, website, or blog post. It is rendered in italic by default.

The element should contain only the title of the work, not the author's name (though the author can appear nearby).

When to Use

  • Book titles: The Great Gatsby
  • Film/TV: Inception, Breaking Bad
  • Music: Album titles like Abbey Road
  • Art: Starry Night, The Thinker
  • Games: The Legend of Zelda
  • Attribution: Inside <figcaption> for blockquote sources

When NOT to Use

  • For author names alone — use plain text or <b>
  • For inline quotations — use <q>
  • For emphasis — use <em>

Examples

Variants

.quoted

Adds typographic double quotes around the title via CSS ::before and ::after. Useful when house style requires titles in quotes rather than (or in addition to) italics.

CSS Reference

Accessibility

  • <cite> has no special ARIA role — screen readers render it as italic text
  • The semantic meaning helps search engines understand the text is a title
  • The italic styling provides a visual convention familiar to readers

Related

  • <blockquote> — For longer quotations (cite provides the source title)
  • <q> — For inline quotations with locale-aware quote marks
  • <figure> — For self-contained content with optional <figcaption>
  • <em> — For emphasis (not titles)
  • <i> — For alternate voice text (taxonomic names, thoughts)