HTML CSS examples for HTML Tag:del
The cite attribute sets a URL to tell why a text or document was deleted.
The cite attribute has no visual effect in ordinary web browsers.
Value | Description |
---|---|
URL | address to the document that explains why the text was deleted. |
A deleted text, with a URL to a document that explains why the text was deleted:
<!DOCTYPE html> <html> <body> <p><del cite="del_demo_cite.htm">This text has been deleted</del></p> </body><!--from ww w . ja v a2 s.co m--> </html>