The HTML <ins> cite Attribute is used to specify the URL of the document or message which denotes the reason of deleting the text.
Syntax:
<ins cite="URL">
Attribute Values:
- 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”).
Example:
html
<!DOCTYPE html>
< html >
< head >
< title >
HTML |
< ins > cite Attribute
</ title >
< style >
del {
color: red;
}
ins {
color: green;
}
h1 {
color: green;
}
body {
text-align: center;
}
</ style >
</ head >
< body >
< h1 >GeeksforGeeks</ h1 >
< h2 >HTML | < ins > cite Attribute</ h2 >
< p >GeeksforGeeks is a
< del >mathematical</ del >
< ins id = "GFG" cite = "ide.GeeeksForGeeks.com" >
computer
</ ins >science portal</ p >
</ body >
</ html >
|
Output :

Supported Browsers: The browser supported by HTML <ins>cite Attribute are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
04 Jul, 2022
Like Article
Save Article