VOOZH about

URL: https://www.geeksforgeeks.org/html/html-ins-cite-attribute/

⇱ HTML <ins> cite Attribute - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

HTML <ins> cite Attribute

Last Updated : 23 May, 2026

The HTML <ins> cite attribute is used to specify the URL or source that explains why the text was inserted into the document.

  • Used with the <ins> tag.
  • Contains a link to the source or reference of the inserted text.
  • Helps provide additional information about content changes or updates.

Syntax: 

<ins cite="URL"> 
  • URL: It specifies the URL of the document that defines why the text was inserted.

Possible values are: 

  • Absolute URL: It is used to point out other websites (like cite =”http://www.w3schools.com”)
  • Relative URL: It is used to point out the page within the website. (like cite=”geeks.htm”). 
Comment
Article Tags: