del cite Attribute - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:del

Description

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.

Attribute Values

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:

Demo Code

ResultView the demo in separate window

<!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>

Related Tutorials