HTML | <del> cite Attribute Last Updated : 21 Jul, 2022 Comments Improve Suggest changes Like Article Like Report 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 deleted text Possible Values: absolute URL: It points to another website.relative URL: It points to a file within a website. Example: html <!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> Output : Supported Browsers: The browser supported by HTML <del> Cite Attribute are listed below: Google ChromeInternet ExplorerEdge 12Firefox 1OperaSafari Comment More infoAdvertise with us Next Article HTML | <del> cite Attribute M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML-Attributes Similar Reads HTML <q> cite Attribute The HTML <q> cite attribute specifies the source of a short inline quotation. It contains a URL pointing to the original document or reference, though it is not displayed to users. It helps in citing the source of a quote.Syntax<q cite="URL">Attribute Values It contains a single value UR 2 min read HTML <del> datetime Attribute The <del> datetime Attribute in HTML is used to specify the date and time of the deleted text. The date-time is inserted in the format YYYY-MM-DDThh:mm:ssTZD. Syntax: <del datetime="YYYY-MM-DDThh:mm:ssTZD"> Attribute Values: This attribute contains single value YYYY-MM-DDThh:mm:ssTZD whi 2 min read HTML | <blockquote> cite Attribute The HTML <blockquote> cite Attribute is used to specify the source of the quotation. Syntax: <blockquote 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 1 min read HTML cite attribute The HTML cite attribute is used to specify the URL of the document that explains the quotes, message, or text that describes why the text was inserted.This attribute can be used with the following elements: HTML | <blockquote> cite AttributeHTML | <del> cite AttributeHTML | <ins> c 2 min read HTML <meta> content Attribute HTML <meta> content Attribute provides the value associated with either the http-equiv or name attribute, offering metadata information such as character encoding, viewport settings, or other document-related data. Syntax: <meta content="text">Attribute Values: It contains single-value t 1 min read Like