Advertisement
Home Open Editor ❯

HTML <ins> cite Attribute

Example

<p>Cost of the product has been increased <ins cite="http://www.example.com/index.html" date="2021-01-01T00:00:00-00:00">New rates will be effected January 2021 onwards.</ins></p>

Try this code ❯

Meaning

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


Standard Syntax

<ins cite="URL" datetime="YYYY-MM-DDThh:mm:ssTZD">...</ins>


Advertisement

Attribute Values

Value Description
URL

This attribute is intended to point to information explaining why the text was changed.

  • 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