del Element
Description
You can mark removed text using the del
elements.
The del
element has two local attributes:cite, datetime
.
The cite
attribute specifies a URL to a document
that explains why the text was removed,
and the datetime
attribute specifies when the modification was made.
Example
You can see the del
elements in use in the following code.
<!DOCTYPE HTML>
<html>
<body>
<p><ins>I like <del>HTML</del>.</ins></p>
</body><!--from ww w . jav a2s.c o m-->
</html>