Advertisement
Home Open Editor ❯

HTML <blockquote> cite Attribute

Example

<blockquote cite="https://en.wikipedia.org/wiki/Climate_change">Climate change includes both global warming driven by human-induced emissions of greenhouse gases and the resulting large-scale shifts in weather patterns.</blockquote>

Try this code ❯

Meaning

The value of cite attribute should be a URL for the document in which the information cited can be found.

Note: Always add the source of a quotation,


Standard Syntax

<blockquote cite="SourceURL">quote </blockquote>


Advertisement

Attribute Values

Value Description
URL

Value can be

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