CSS Portal

HTML <cite> Tag

If this site has been useful, we’d love your support! Consider buying us a coffee to keep things going strong!

Description

The <cite> element in HTML is used to represent the title of a work or the name of a creative piece, such as a book, report, research paper, song, film, or website. Its primary purpose is to indicate a reference to a creative source, helping readers understand that the text is a citation rather than part of the author’s own content.

When rendered in a browser, the <cite> element typically displays text in italic style by default, emphasizing that the content is a reference. This visual distinction aligns with traditional typographic conventions for citing works.

It's important to note that <cite> is meant for the title of a work, not for the name of a person. For example, if you want to reference the author of a book, the <cite> tag is not appropriate; it is specifically for the work’s title.

Example usage:

<p>One of the most influential novels of the 20th century is <cite>1984</cite> by George Orwell.</p>

<p>According to the study published in <cite>Nature</cite>, the results were groundbreaking.</p>

In these examples, <cite> clearly identifies the titles of the book and the journal as referenced works, separating them from the surrounding text.

The <cite> element can be used inline within paragraphs, headings, or any text flow, making it flexible for referencing creative works without breaking the structure of the content.

Properties

Permitted Parents
Any element that accepts phrasing content
Content
Inline and text
Start/End Tags
Start tag: required, End tag: required

Example

My favourite website is <cite>CSS Portal</cite>.

Attributes

None

Global Attributes

The <cite> tag also supports the Global Attributes in HTML5

Event Attributes

The <cite> tag also supports the Event Attributes in HTML5

Browser Support

The following information will show you the current browser support for the HTML <cite> tag. Hover over a browser icon to see the version that first introduced support for this HTML tag.

This tag is supported by all modern browsers.
Desktop
Chrome
Edge
Firefox
Opera
Safari
Tablets & Mobile
Chrome Android
Firefox Android
Opera Android
Safari iOS
Samsung Internet
Android WebView
-

Last updated by CSSPortal on: 26th December 2025

If this site has been useful, we’d love your support! Consider buying us a coffee to keep things going strong!