Skip to content

<ins> - The Inserted Text Element

Inline HTML 4.0

The inserted text element represents text that has been added or inserted into a document, typically displayed with an underline.

Result
<ins>inserted text</ins>

The <ins> element indicates text that has been added during editing or revision.

AttributeDescriptionExample
citeURL explaining the insertioncite="https://example.com/changelog"
datetimeWhen insertion occurreddatetime="2024-12-11T10:30:00"
Result
Result
Result

Show the full edit history by combining <del> and <ins>:

Result
Result
Result
Result

Customize inserted text appearance:

Result
Result
Result
Result
Result
Result

Provide detailed change information:

Result

Many screen readers announce inserted text as “insertion” or “added,” helping users understand the content status.

Make additions clear and meaningful:

<p><ins>New policy</ins></p>

For complex edits:

<p>
Features:
<ins aria-label="Added December 11, 2024">
Dark mode, Auto-save
</ins>
</p>

The <ins> element can wrap block-level content:

Result
Result
BrowserVersionNotes
Chrome1+Full support
Firefox1+Full support
Safari1+Full support
Edge12+Full support
IE4+Full support

The <ins> element has excellent browser support across all versions.