Specifies an editorial insertion of content.
The ins tag allows authors to insert text with the date of insertion. The text is rendered underlined. If you use it together with the del element, you can show the old and the new contents with different styles.
Use the datetime attribute to specify the date and time of the modification. If you want to attach a document to the insertion that explains why the modification was necessary, use the cite attribute.
<p>Some text before <del datetime="2005-11-22T02:35:34-07:00">
This is the old text.
</del>
<ins datetime="2005-11-22T02:35:34-07:00">
This is the new text.
</ins> </p>
Some text before This is the old text. This is the new text.