Advertisement
Home Open Editor ❯

HTML <q> cite Attribute

Example

<p>The World Health Organization (WHO) is a <q cite="https://www.wikipedia.org/wiki/World_Health_Organization">specialized agency of the United Nations responsible for international public health.</q></p>

Try this code ❯

Meaning

The cite attribute is a URL that designates a source document or message for the information quoted.

This attribute is intended to point to information explaining the context or the reference for the quote.


Standard Syntax

<q cite="URL">Quote</q>


Advertisement

Attribute Values

Value Description
URL

Value can be

  • An absolute URL - point to within or another web site ( href="http://www.example.com/index.html")
  • A relative URL - point to within a web site ( href="index.html")
Home Open Editor ❯
Advertisement