HTML ins tag

<ins> tag represents an addition of text in a document. The additional text looks underline.

<article>
 <p>Here <ins>new paragraph</ins> has been added.</p>
 <p><ins>The meeting data was fixed.</ins></p>
 </article>
</>

Here new paragraph has been added.

The meeting data was fixed.

Tag Uses

Specific uses of <ins> tag

The addition of text is represented by the ins element.

Tag omission

Both opening and closing tags are necessary for the ins element.

Global Attributes

All the global attriutes are applicable on the ins element.

Tag Attributes

Attributes that are applicable to <ins> tag
datetime

datetime attriute indicates the date and time of insertion of text.

<ins datetime="2005-03-16"> Here the time of addition of text is present. </ins>
cite

cite attriute represents a document which gives more information about the edit content for ins tag.

<ins cite="URL"> you can find more information from the citation link. </ins>


Was this article helpful?