ins Element
Description
You can mark addedtext using the ins
elements.
The ins
element denotes inserted content,
with local Attributes:cite, datetime
.
The cite
attribute specifies a URL to a document
that explains why the text was added,
and the datetime
attribute specifies when the modification was made.
Example
You can see the ins
element in use in the following code.
<!DOCTYPE HTML>
<html>
<body>
<p>
<ins>I like <mark>HTML</mark>.</ins>
</p><!-- w w w . j a v a 2 s.c o m-->
</body>
</html>