HTML | <del> cite Attribute
The HTML <del> cite Attribute is used to specify the URL of the document or message which denotes the reason for deleting the text.
Syntax:
<del cite="URL">
Attribute Values:
- URL: it contains the value i.e URL which specifies the source of the quotation.
Possible Values:
- absolute URL: It points to another website.
- relative URL: It points to a file within a website.
Example:
<!DOCTYPE html> < html > < head > < title > HTML < Del >cite Attribute </ title > < style > del { color: red; } ins { color: green; } </ style > </ head > < body style = "text-align:center;" > < h1 > GeeksforGeeks </ h1 > < h2 > HTML < Del >cite Attribute </ h2 > < p > GeeksforGeeks is a < del id = "GFG" cite = "www.GeeksForGeeks.com" > mathematical</ del > < ins > computer</ ins > science portal </ p > </ body > </ html > |
chevron_right
filter_none
Output :
Supported Browsers: The browser supported by HTML <del> Cite Attribute are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari
Recommended Posts:
- HTML | <ins> cite Attribute
- HTML | cite attribute
- HTML | <q> cite Attribute
- HTML | <blockquote> cite Attribute
- HTML | cite Tag
- HTML | DOM del cite Property
- HTML | DOM ins cite Property
- HTML | DOM Cite Object
- HTML | DOM blockquote cite Property
- HTML | DOM Quote cite Property
- HTML | min Attribute
- HTML | <map> name Attribute
- HTML | max attribute
- HTML | <img> src Attribute
- HTML | low Attribute
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.